mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Applied the conversion of Umezawa's Jitte by lazylockie.
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
Name:Umezawa's Jitte
|
||||
ManaCost:2
|
||||
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> | 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.
|
||||
SVar:TrigPutCounter:AB$PutCounter | Cost$ 0 | CounterType$ CHARGE | CounterNum$ 2
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/umezawas_jitte.jpg
|
||||
SetInfo:BOK|Rare|http://magiccards.info/scans/en/bok/163.jpg
|
||||
|
||||
@@ -4055,18 +4055,18 @@ public class GameActionUtil {
|
||||
AllZone.Stack.add(ability);
|
||||
}
|
||||
|
||||
if(source.isEquipped()) {
|
||||
/*if(source.isEquipped()) {
|
||||
ArrayList<Card> equips = source.getEquippedBy();
|
||||
for(Card equip:equips) {
|
||||
/*
|
||||
* Whenever equipped creature deals combat damage, put two
|
||||
* charge counters on Umezawa's Jitte.
|
||||
*/
|
||||
*
|
||||
if(equip.getName().equals("Umezawa's Jitte")) {
|
||||
equip.addCounter(Counters.CHARGE, 2);
|
||||
}
|
||||
}
|
||||
}//isEquipped
|
||||
}//isEquipped*/
|
||||
}
|
||||
|
||||
//restricted to combat damage and dealing damage to creatures
|
||||
|
||||
Reference in New Issue
Block a user