convert Sek'Kuar, Deathkeeper to triggers

This commit is contained in:
jendave
2011-08-06 19:21:32 +00:00
parent 9ba138305f
commit cf3d652314
2 changed files with 2 additions and 20 deletions

View File

@@ -3,7 +3,8 @@ ManaCost:2 B R G
Types:Legendary Creature Orc Shaman
Text:no text
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:Picture:http://www.wizards.com/global/images/magic/general/sekkuar_deathkeeper.jpg
SetInfo:CSP|Rare|http://magiccards.info/scans/en/cs/131.jpg

View File

@@ -2465,11 +2465,6 @@ public class GameActionUtil {
if (c.getName().equals("Fecundity")) destroyCreature_Fecundity(c, destroyed);
else if (c.getName().equals("Proper Burial")
&& 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);
}
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***
public static void executeLandfallEffects(Card c) {