mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
convert Sek'Kuar, Deathkeeper to triggers
This commit is contained in:
@@ -3,7 +3,8 @@ ManaCost:2 B R G
|
|||||||
Types:Legendary Creature Orc Shaman
|
Types:Legendary Creature Orc Shaman
|
||||||
Text:no text
|
Text:no text
|
||||||
PT:4/3
|
PT:4/3
|
||||||
K:Whenever another nontoken creature you control is put into a graveyard from the battlefield, put a 3/1 black and red Graveborn creature token with haste onto the battlefield.
|
T:Mode$ ChangesZone | Origin$ Battlefield | Destination$ Graveyard | ValidCard$ Creature.nonToken+Other+YouCtrl | TriggerZones$ Battlefield | Execute$ TrigToken | TriggerDescription$ Whenever another nontoken creature you control is put into a graveyard from the battlefield, put a 3/1 black and red Graveborn creature token with haste onto the battlefield.
|
||||||
|
SVar:TrigToken:AB$Token | Cost$ 0 | TokenAmount$ 1 | TokenName$ Graveborn | TokenTypes$ Creature,Graveborn | TokenOwner$ Controller | TokenColors$ Black,Red | TokenPower$ 3 | TokenToughness$ 1 | TokenKeywords$ Haste
|
||||||
SVar:Rarity:Rare
|
SVar:Rarity:Rare
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/sekkuar_deathkeeper.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/sekkuar_deathkeeper.jpg
|
||||||
SetInfo:CSP|Rare|http://magiccards.info/scans/en/cs/131.jpg
|
SetInfo:CSP|Rare|http://magiccards.info/scans/en/cs/131.jpg
|
||||||
|
|||||||
@@ -2465,11 +2465,6 @@ public class GameActionUtil {
|
|||||||
if (c.getName().equals("Fecundity")) destroyCreature_Fecundity(c, destroyed);
|
if (c.getName().equals("Fecundity")) destroyCreature_Fecundity(c, destroyed);
|
||||||
else if (c.getName().equals("Proper Burial")
|
else if (c.getName().equals("Proper Burial")
|
||||||
&& destroyed.getController().equals(c.getController())) destroyCreature_Proper_Burial(c, destroyed);
|
&& destroyed.getController().equals(c.getController())) destroyCreature_Proper_Burial(c, destroyed);
|
||||||
else if (c.getName().equals("Sek'Kuar, Deathkeeper")
|
|
||||||
&& !destroyed.isToken()
|
|
||||||
&& destroyed.getController().equals(c.getController())
|
|
||||||
&& !destroyed.getName().equals(c.getName())) destroyCreature_SekKuar(c, destroyed);
|
|
||||||
//}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//***
|
//***
|
||||||
@@ -2514,20 +2509,6 @@ public class GameActionUtil {
|
|||||||
AllZone.Stack.add(ability);
|
AllZone.Stack.add(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void destroyCreature_SekKuar(Card c, Card destroyed) {
|
|
||||||
final Card crd = c;
|
|
||||||
|
|
||||||
Ability ability = new Ability(c, "0") {
|
|
||||||
@Override
|
|
||||||
public void resolve() {
|
|
||||||
CardFactoryUtil.makeToken("Graveborn", "BR 3 1 Graveborn", crd.getController(), "BR", new String[] {
|
|
||||||
"Creature", "Graveborn"}, 3, 1, new String[] {"Haste"});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
ability.setStackDescription("Sek'Kuar, Deathkeeper - put a 3/1 black and red Graveborn creature token with haste onto the battlefield.");
|
|
||||||
AllZone.Stack.add(ability);
|
|
||||||
}
|
|
||||||
|
|
||||||
//***CREATURES END HERE***
|
//***CREATURES END HERE***
|
||||||
|
|
||||||
public static void executeLandfallEffects(Card c) {
|
public static void executeLandfallEffects(Card c) {
|
||||||
|
|||||||
Reference in New Issue
Block a user