- Removed the keyword "Prevent all damage that would be dealt to you."

This commit is contained in:
Sloth
2011-09-25 18:45:39 +00:00
parent 46c6f3af4d
commit 1c5c56d31e
2 changed files with 2 additions and 7 deletions

View File

@@ -2,9 +2,8 @@ Name:Safe Passage
ManaCost:2 W
Types:Instant
Text:no text
A:SP$ Effect | Cost$ 2 W | Name$ Safe Passage Effect | StaticAbilities$ CPump,PPump | SpellDescription$ Prevent all damage that would be dealt to you and creatures you control this turn.
SVar:CPump:Mode$ Continuous | Affected$ Creature.YouCtrl | AddHiddenKeyword$ HIDDEN Prevent all damage that would be dealt to CARDNAME. | Description$ Prevent all damage that would be dealt to you and creatures you control this turn.
SVar:PPump:Mode$ Continuous | Affected$ You | AddKeyword$ Prevent all damage that would be dealt to you
A:SP$ Effect | Cost$ 2 W | Name$ Safe Passage Effect | StaticAbilities$ STPrevent | SpellDescription$ Prevent all damage that would be dealt to you and creatures you control this turn.
SVar:STPrevent:Mode$ PreventDamage | Target$ You,Creature.YouCtrl | Description$ Prevent all damage that would be dealt to you and creatures you control this turn.
SVar:RemAIDeck:True
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/safe_passage.jpg

View File

@@ -404,10 +404,6 @@ public abstract class Player extends GameEntity {
if (source.hasKeyword("Prevent all damage that would be dealt to and dealt by CARDNAME.")) return 0;
if (source.hasKeyword("Prevent all damage that would be dealt by CARDNAME.")) return 0;
if (AllZoneUtil.isCardInPlay("Purity", this) && !isCombat) return 0;
if (hasKeyword("Prevent all damage that would be dealt to you")) {
return 0;
}
//Prevent Damage static abilities
CardList allp = AllZoneUtil.getCardsIn(Zone.Battlefield);