mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
*Added Skullbriar, the Walking Grave.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -6889,6 +6889,7 @@ res/cardsfolder/s/skull_collector.txt svneol=native#text/plain
|
|||||||
res/cardsfolder/s/skull_fracture.txt svneol=native#text/plain
|
res/cardsfolder/s/skull_fracture.txt svneol=native#text/plain
|
||||||
res/cardsfolder/s/skull_of_orm.txt svneol=native#text/plain
|
res/cardsfolder/s/skull_of_orm.txt svneol=native#text/plain
|
||||||
res/cardsfolder/s/skull_of_ramos.txt svneol=native#text/plain
|
res/cardsfolder/s/skull_of_ramos.txt svneol=native#text/plain
|
||||||
|
res/cardsfolder/s/skullbriar_the_walking_grave.txt -text
|
||||||
res/cardsfolder/s/skullclamp.txt svneol=native#text/plain
|
res/cardsfolder/s/skullclamp.txt svneol=native#text/plain
|
||||||
res/cardsfolder/s/skullmead_cauldron.txt svneol=native#text/plain
|
res/cardsfolder/s/skullmead_cauldron.txt svneol=native#text/plain
|
||||||
res/cardsfolder/s/skullmulcher.txt svneol=native#text/plain
|
res/cardsfolder/s/skullmulcher.txt svneol=native#text/plain
|
||||||
|
|||||||
10
res/cardsfolder/s/skullbriar_the_walking_grave.txt
Normal file
10
res/cardsfolder/s/skullbriar_the_walking_grave.txt
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
Name:Skullbriar, the Walking Grave
|
||||||
|
ManaCost:B G
|
||||||
|
Types:Legendary Creature Zombie Elemental
|
||||||
|
Text:Counters remain on CARDNAME as it moves to any zone other than a player's hand or library.
|
||||||
|
PT:1/1
|
||||||
|
K:Haste
|
||||||
|
T:Mode$ DamageDone | ValidSource$ Card.Self | ValidTarget$ Player | Execute$ TrigPutCounter | TriggerDescription$ Whenever CARDNAME deals combat damage to a player, put a +1/+1 counter on it.
|
||||||
|
SVar:TrigPutCounter:AB$PutCounter | Cost$ 0 | Defined$ Self | CounterType$ P1P1 | CounterNum$ 1
|
||||||
|
SetInfo:COM|Rare|http://magiccards.info/scans/en/cmd/227.jpg
|
||||||
|
End
|
||||||
@@ -127,7 +127,8 @@ public class GameAction {
|
|||||||
copied = AllZone.getCardFactory().copyCard(copied);
|
copied = AllZone.getCardFactory().copyCard(copied);
|
||||||
*/
|
*/
|
||||||
//remove all counters from the card if destination is not the battlefield
|
//remove all counters from the card if destination is not the battlefield
|
||||||
if (!zone.is(Constant.Zone.Battlefield))
|
//UNLESS we're dealing with Skullbriar, the Walking Grave
|
||||||
|
if (!zone.is(Constant.Zone.Battlefield) && !(c.getName().equals("Skullbriar, the Walking Grave") && !zone.is(Constant.Zone.Hand) && !zone.is(Constant.Zone.Library)))
|
||||||
copied.clearCounters();
|
copied.clearCounters();
|
||||||
|
|
||||||
copied.setTimestamp(AllZone.getNextTimestamp());
|
copied.setTimestamp(AllZone.getNextTimestamp());
|
||||||
|
|||||||
Reference in New Issue
Block a user