From e2fab353fdcb7a4f4b48ebae7201af44a4f8def4 Mon Sep 17 00:00:00 2001 From: Northmoc Date: Wed, 26 May 2021 11:54:23 -0400 Subject: [PATCH 1/2] carth_the_lion.txt --- forge-gui/res/cardsfolder/upcoming/carth_the_lion.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 forge-gui/res/cardsfolder/upcoming/carth_the_lion.txt diff --git a/forge-gui/res/cardsfolder/upcoming/carth_the_lion.txt b/forge-gui/res/cardsfolder/upcoming/carth_the_lion.txt new file mode 100644 index 00000000000..d436cd35640 --- /dev/null +++ b/forge-gui/res/cardsfolder/upcoming/carth_the_lion.txt @@ -0,0 +1,10 @@ +Name:Carth the Lion +ManaCost:3 B G +Types:Legendary Creature Human Warrior +PT:3/5 +T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigDig | TriggerDescription$ Whenever CARDNAME enters the battlefield or a planeswalker you control dies, look at the top seven cards of your library. You may reveal a planeswalker card from among them and put it into your hand. Put the rest on the bottom of your library in a random order. +T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Planeswalker.YouCtrl | TriggerZones$ Battlefield | Execute$ TrigDig | Secondary$ True | TriggerDescription$ Whenever CARDNAME enters the battlefield or a planeswalker you control dies, look at the top seven cards of your library. You may reveal a planeswalker card from among them and put it into your hand. Put the rest on the bottom of your library in a random order. +SVar:TrigDig:DB$ Dig | DigNum$ 7 | ChangeNum$ 1 | Optional$ True | ChangeValid$ Planeswalker | RestRandomOrder$ True | Reveal$ True +S:Mode$ RaiseCost | ValidCard$ Planeswalker.YouCtrl | Type$ Loyalty | Cost$ AddCounter<1/LOYALTY> | Description$ Planeswalkers' loyalty abilities you activate cost an additional [+1] to activate. +DeckNeeds:Type$Planeswalker +Oracle:Whenever Carth the Lion enters the battlefield or a planeswalker you control dies, look at the top seven cards of your library. You may reveal a planeswalker card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.\nPlaneswalkers' loyalty abilities you activate cost an additional [+1] to activate. From 889173a6827c9f5f37f6532b0b060841c7679366 Mon Sep 17 00:00:00 2001 From: Northmoc Date: Wed, 26 May 2021 11:54:49 -0400 Subject: [PATCH 2/2] move PutCounter cost earlier --- forge-game/src/main/java/forge/game/cost/CostPutCounter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/cost/CostPutCounter.java b/forge-game/src/main/java/forge/game/cost/CostPutCounter.java index c6438d986b4..914db9d175e 100644 --- a/forge-game/src/main/java/forge/game/cost/CostPutCounter.java +++ b/forge-game/src/main/java/forge/game/cost/CostPutCounter.java @@ -75,7 +75,7 @@ public class CostPutCounter extends CostPartWithList { } @Override - public int paymentOrder() { return 8; } + public int paymentOrder() { return 6; } @Override public boolean isReusable() {