- Fixed Rolling Temblor.

This commit is contained in:
Sloth
2011-10-09 07:18:33 +00:00
parent e4500236bc
commit d34b4712ae
2 changed files with 12 additions and 11 deletions

View File

@@ -2,8 +2,8 @@ Name:Rolling Temblor
ManaCost:2 R ManaCost:2 R
Types:Sorcery Types:Sorcery
Text:no text Text:no text
A:SP$ DamageAll | Cost$ 2 R | ValidCards$ Creature.withoutFlying | ValidPlayers$ Each | NumDmg$ 2 | SpellDescription$ CARDNAME deals 2 damage to each creature without flying. A:SP$ DamageAll | Cost$ 2 R | ValidCards$ Creature.withoutFlying | NumDmg$ 2 | SpellDescription$ CARDNAME deals 2 damage to each creature without flying.
A:SP$ DamageAll | Cost$ 4 R R | ValidCards$ Creature.withoutFlying | ValidPlayers$ Each | NumDmg$ 2 | Flashback$ True | CostDesc$ Flashback 4 R R | SpellDescription$ (You may cast this card from your graveyard for its flashback cost. Then exile it.) A:SP$ DamageAll | Cost$ 4 R R | ValidCards$ Creature.withoutFlying | NumDmg$ 2 | Flashback$ True | CostDesc$ Flashback 4 R R | SpellDescription$ (You may cast this card from your graveyard for its flashback cost. Then exile it.)
SVar:Rarity:Uncommon SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/rolling_temblor.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/rolling_temblor.jpg
SetInfo:ISD|Uncommon|http://magiccards.info/scans/en/isd/161.jpg SetInfo:ISD|Uncommon|http://magiccards.info/scans/en/isd/161.jpg

View File

@@ -339,7 +339,8 @@ public class Card extends GameEntity implements Comparable<Card> {
public final void moveTrigger(final Trigger t) { public final void moveTrigger(final Trigger t) {
t.setHostCard(this); t.setHostCard(this);
triggers.add(t); if(!triggers.contains(t))
triggers.add(t);
} }
/** /**