mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
convert Crypt Cobra, Suq'Ata Assassin, and Swamp Mosquito to triggers
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
Name:Crypt Cobra
|
||||
ManaCost:3 B
|
||||
Types:Creature Snake
|
||||
Text:Whenever Crypt Cobra attacks and isn't blocked, defending player gets a poison counter. (A player with ten or more poison counters loses the game.)
|
||||
Text:no text
|
||||
PT:3/3
|
||||
T:Mode$ AttackerUnblocked | ValidCard$ Card.Self | TriggerZones$ Battlefield | Execute$ TrigPoison | TriggerDescription$ Whenever CARDNAME attacks and isn't blocked, defending player gets a poison counter. (A player with ten or more poison counters loses the game.)
|
||||
SVar:TrigPoison:AB$Poison | Cost$ 0 | Defined$ Opponent | Num$ 1
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/crypt_cobra.jpg
|
||||
SetInfo:MIR|Uncommon|http://magiccards.info/scans/en/mr/12.jpg
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
Name:Suq'Ata Assassin
|
||||
ManaCost:1 B B
|
||||
Types:Creature Human Assassin
|
||||
Text:Whenever Suq'Ata Assassin attacks and isn't blocked, defending player gets a poison counter. (A player with ten or more poison counters loses the game.)
|
||||
Text:no text
|
||||
PT:1/1
|
||||
K:Fear
|
||||
T:Mode$ AttackerUnblocked | ValidCard$ Card.Self | TriggerZones$ Battlefield | Execute$ TrigPoison | TriggerDescription$ Whenever CARDNAME attacks and isn't blocked, defending player gets a poison counter. (A player with ten or more poison counters loses the game.)
|
||||
SVar:TrigPoison:AB$Poison | Cost$ 0 | Defined$ Opponent | Num$ 1
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/suqata_assassin.jpg
|
||||
SetInfo:VIS|Uncommon|http://magiccards.info/scans/en/vi/19.jpg
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
Name:Swamp Mosquito
|
||||
ManaCost:1 B
|
||||
Types:Creature Insect
|
||||
Text:Whenever Swamp Mosquito attacks and isn't blocked, defending player gets a poison counter. (A player with ten or more poison counters loses the game.)
|
||||
Text:no text
|
||||
PT:0/1
|
||||
K:Flying
|
||||
T:Mode$ AttackerUnblocked | ValidCard$ Card.Self | TriggerZones$ Battlefield | Execute$ TrigPoison | TriggerDescription$ Whenever CARDNAME attacks and isn't blocked, defending player gets a poison counter. (A player with ten or more poison counters loses the game.)
|
||||
SVar:TrigPoison:AB$Poison | Cost$ 0 | Defined$ Opponent | Num$ 1
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/swamp_mosquito.jpg
|
||||
SetInfo:ALL|Common|http://magiccards.info/scans/en/ai/30.jpg|2
|
||||
|
||||
@@ -2058,13 +2058,6 @@ public class CombatUtil {
|
||||
|
||||
AllZone.Stack.add(ability2);
|
||||
|
||||
} else if(c.getName().equals("Crypt Cobra") || c.getName().equals("Suq'Ata Assassin")
|
||||
|| c.getName().equals("Swamp Mosquito")) {
|
||||
Player controller = c.getController();
|
||||
Player opp = controller.getOpponent();
|
||||
|
||||
if(opp.equals(AllZone.HumanPlayer)) AllZone.HumanPlayer.addPoisonCounters(1);
|
||||
else AllZone.ComputerPlayer.addPoisonCounters(1);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user