mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +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:
@@ -4,4 +4,5 @@ Types:Creature Human Cleric
|
|||||||
Text:no text
|
Text:no text
|
||||||
PT:2/2
|
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.
|
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
|
||||||
@@ -3811,8 +3811,8 @@ public class CardFactory_Creatures {
|
|||||||
PlayerZone grave = AllZone.getZone(Constant.Zone.Graveyard, card.getController());
|
PlayerZone grave = AllZone.getZone(Constant.Zone.Graveyard, card.getController());
|
||||||
if(AllZone.GameAction.isCardInZone(getTargetCard(), grave)) {
|
if(AllZone.GameAction.isCardInZone(getTargetCard(), grave)) {
|
||||||
PlayerZone play = AllZone.getZone(Constant.Zone.Play, card.getController());
|
PlayerZone play = AllZone.getZone(Constant.Zone.Play, card.getController());
|
||||||
play.add(getTargetCard());
|
|
||||||
grave.remove(getTargetCard());
|
grave.remove(getTargetCard());
|
||||||
|
play.add(getTargetCard());
|
||||||
}
|
}
|
||||||
}//resolve()
|
}//resolve()
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user