- Applied the conversion of Umezawa's Jitte by lazylockie.

This commit is contained in:
jendave
2011-08-06 17:49:51 +00:00
parent 9b11c5c31b
commit 1d8ac5d78e
2 changed files with 7 additions and 5 deletions

View File

@@ -1,10 +1,12 @@
Name:Umezawa's Jitte Name:Umezawa's Jitte
ManaCost:2 ManaCost:2
Types:Legendary Artifact Equipment Types:Legendary Artifact Equipment
Text:Whenever equipped creature deals combat damage, put two charge counters on Umezawa's Jitte. Text:no text
T:Mode$ DamageDone | ValidSource$ Creature.AttachedBy | ValidTarget$ Opponent | CombatDamage$ True | Execute$ TrigPutCounter | TriggerZones$ Battlefield | TriggerDescription$ Whenever equipped creature deals combat damage, put two charge counters on CARDNAME.
A:AB$Pump | Cost$ SubCounter<1/CHARGE> | Defined$ Equipped | NumAtt$ +2 | NumDef$ +2 | SpellDescription$ Equipped creature gets +2/+2 until end of turn. A:AB$Pump | Cost$ SubCounter<1/CHARGE> | Defined$ Equipped | NumAtt$ +2 | NumDef$ +2 | SpellDescription$ Equipped creature gets +2/+2 until end of turn.
A:AB$Pump | Cost$ SubCounter<1/CHARGE> | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ -1 | NumDef$ -1 | IsCurse$ True | SpellDescription$ Target creature gets -1/-1 until end of turn. A:AB$Pump | Cost$ SubCounter<1/CHARGE> | ValidTgts$ Creature | TgtPrompt$ Select target creature | NumAtt$ -1 | NumDef$ -1 | IsCurse$ True | SpellDescription$ Target creature gets -1/-1 until end of turn.
A:AB$GainLife | Cost$ SubCounter<1/CHARGE> | LifeAmount$ 2 | SpellDescription$ You gain 2 life. A:AB$GainLife | Cost$ SubCounter<1/CHARGE> | LifeAmount$ 2 | SpellDescription$ You gain 2 life.
SVar:TrigPutCounter:AB$PutCounter | Cost$ 0 | CounterType$ CHARGE | CounterNum$ 2
SVar:Rarity:Rare SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/umezawas_jitte.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/umezawas_jitte.jpg
SetInfo:BOK|Rare|http://magiccards.info/scans/en/bok/163.jpg SetInfo:BOK|Rare|http://magiccards.info/scans/en/bok/163.jpg

View File

@@ -4055,18 +4055,18 @@ public class GameActionUtil {
AllZone.Stack.add(ability); AllZone.Stack.add(ability);
} }
if(source.isEquipped()) { /*if(source.isEquipped()) {
ArrayList<Card> equips = source.getEquippedBy(); ArrayList<Card> equips = source.getEquippedBy();
for(Card equip:equips) { for(Card equip:equips) {
/* /*
* Whenever equipped creature deals combat damage, put two * Whenever equipped creature deals combat damage, put two
* charge counters on Umezawa's Jitte. * charge counters on Umezawa's Jitte.
*/ *
if(equip.getName().equals("Umezawa's Jitte")) { if(equip.getName().equals("Umezawa's Jitte")) {
equip.addCounter(Counters.CHARGE, 2); equip.addCounter(Counters.CHARGE, 2);
} }
} }
}//isEquipped }//isEquipped*/
} }
//restricted to combat damage and dealing damage to creatures //restricted to combat damage and dealing damage to creatures