convert Nicol Bolas to triggers

This commit is contained in:
jendave
2011-08-06 18:59:34 +00:00
parent 02dc423c26
commit e7b6b05e86
2 changed files with 4 additions and 3 deletions

View File

@@ -1,10 +1,12 @@
Name:Nicol Bolas
ManaCost:2 U U B B R R
Types:Legendary Creature Elder Dragon
Text:Whenever Nicol Bolas deals damage to an opponent, that player discards his or her hand.
Text:no text
PT:7/7
K:Flying
K:At the beginning of your upkeep, sacrifice CARDNAME unless you pay U B R
T:Mode$ DamageDone | ValidSource$ Card.Self | ValidTarget$ Opponent | TriggerZones$ Battlefield | Execute$ TrigDiscard | TriggerDescription$ Whenever CARDNAME deals damage to an opponent, that player discards his or her hand.
SVar:TrigDiscard:AB$Discard | Cost$ 0 | Defined$ Opponent | Mode$ Hand
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/nicol_bolas.jpg
SetInfo:TSB|Special|http://magiccards.info/scans/en/tsts/98.jpg

View File

@@ -4307,8 +4307,7 @@ public class GameActionUtil {
if(c.getKeyword().contains("Whenever this creature deals damage to a player, that player gets a poison counter."))
playerCombatDamage_PoisonCounter(c, 1);
if(c.getName().equals("Nicol Bolas")) playerCombatDamage_Nicol_Bolas(c);
else if(c.getName().equals("Whirling Dervish") || c.getName().equals("Dunerider Outlaw"))
if(c.getName().equals("Whirling Dervish") || c.getName().equals("Dunerider Outlaw"))
playerCombatDamage_Whirling_Dervish(c);
else if(AllZoneUtil.isCardInPlay("Living Artifact", player)) execute_Living_Artifact(player, damage);