- Added End for Parsing to Undead Slayer

- Sun Titan now removes resurrected card from graveyard before adding to play. This fixes a bug that would cause ETB abilities to trigger twice.
This commit is contained in:
jendave
2011-08-06 10:05:30 +00:00
parent 69372ee172
commit 47fee82a41
2 changed files with 3 additions and 2 deletions

View File

@@ -4,4 +4,5 @@ Types:Creature Human Cleric
Text:no text
PT:2/2
A:AB$Bounce|Cost$W T|ValidTgts$Creature.Skeleton,Creature.Vampire,Creature.Zombie|Destination$Exile|TgtPrompt$Select target Skeleton,Vampire or Zombie creature.|SpellDescription$Exile target Skeleton, Vampire or Zombie.
SVar:Rarity:Uncommon
SVar:Rarity:Uncommon
End

View File

@@ -3811,8 +3811,8 @@ public class CardFactory_Creatures {
PlayerZone grave = AllZone.getZone(Constant.Zone.Graveyard, card.getController());
if(AllZone.GameAction.isCardInZone(getTargetCard(), grave)) {
PlayerZone play = AllZone.getZone(Constant.Zone.Play, card.getController());
play.add(getTargetCard());
grave.remove(getTargetCard());
play.add(getTargetCard());
}
}//resolve()
};