mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- 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:
@@ -5,3 +5,4 @@ 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
|
||||
End
|
||||
@@ -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()
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user