From f808074e8d73d8f7e4da1028acca8a132a5be95a Mon Sep 17 00:00:00 2001 From: Northmoc Date: Tue, 7 Dec 2021 08:06:11 -0500 Subject: [PATCH 1/2] captain_eberhart.txt --- forge-gui/res/cardsfolder/upcoming/captain_eberhart.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 forge-gui/res/cardsfolder/upcoming/captain_eberhart.txt diff --git a/forge-gui/res/cardsfolder/upcoming/captain_eberhart.txt b/forge-gui/res/cardsfolder/upcoming/captain_eberhart.txt new file mode 100644 index 00000000000..fbe63216608 --- /dev/null +++ b/forge-gui/res/cardsfolder/upcoming/captain_eberhart.txt @@ -0,0 +1,8 @@ +Name:Captain Eberhart +ManaCost:1 W +Types:Legendary Creature Human Soldier +PT:1/1 +K:Double strike +S:Mode$ ReduceCost | ValidCard$ Card.YouOwn+DrawnThisTurn | Type$ Spell | Amount$ 1 | Description$ Spells cast from among cards you drew this turn cost {1} less to cast. +S:Mode$ RaiseCost | ValidCard$ Card.OppOwn+DrawnThisTurn | Type$ Spell | Amount$ 1 | Description$ Spells cast from among cards your opponents drew this turn cost {1} more to cast. +Oracle:Double strike\nSpells cast from among cards you drew this turn cost {1} less to cast.\nSpells cast from among cards your opponents drew this turn cost {1} more to cast. From 2032faf5e9b8e6300c682fd6c25f436d9813eeb7 Mon Sep 17 00:00:00 2001 From: Northmoc Date: Tue, 7 Dec 2021 09:11:17 -0500 Subject: [PATCH 2/2] add drawnThisTurn to list of things to copy when moving to stack --- forge-game/src/main/java/forge/game/GameAction.java | 1 + 1 file changed, 1 insertion(+) diff --git a/forge-game/src/main/java/forge/game/GameAction.java b/forge-game/src/main/java/forge/game/GameAction.java index 9e54cc48c58..99f2af55137 100644 --- a/forge-game/src/main/java/forge/game/GameAction.java +++ b/forge-game/src/main/java/forge/game/GameAction.java @@ -275,6 +275,7 @@ public class GameAction { copied.setChangedCardTypesCharacterDefining(c.getChangedCardTypesCharacterDefiningTable()); copied.setChangedCardNames(c.getChangedCardNames()); copied.setChangedCardTraits(c.getChangedCardTraits()); + copied.setDrawnThisTurn(c.getDrawnThisTurn()); copied.copyChangedTextFrom(c); copied.setTimestamp(c.getTimestamp());