- Fixed a bug in AbilityFactory.resolve.

- Added Eater of the Dead.
This commit is contained in:
Sloth
2011-10-01 20:34:08 +00:00
parent 5f4209e581
commit 981e678368
4 changed files with 30 additions and 12 deletions

1
.gitattributes vendored
View File

@@ -2228,6 +2228,7 @@ res/cardsfolder/e/earthquake.txt svneol=native#text/plain
res/cardsfolder/e/earthshaker.txt svneol=native#text/plain
res/cardsfolder/e/eastern_paladin.txt svneol=native#text/plain
res/cardsfolder/e/eater_of_days.txt svneol=native#text/plain
res/cardsfolder/e/eater_of_the_dead.txt -text
res/cardsfolder/e/ebon_dragon.txt svneol=native#text/plain
res/cardsfolder/e/ebon_drake.txt svneol=native#text/plain
res/cardsfolder/e/ebon_praetor.txt svneol=native#text/plain

View File

@@ -0,0 +1,12 @@
Name:Eater of the Dead
ManaCost:4 B
Types:Creature Horror
Text:no text
PT:3/4
A:AB$ ChangeZone | Cost$ 0 | Origin$ Graveyard | Destination$ Exile | ValidTgts$ Creature | SubAbility$ DBUntap | ConditionPresent$ Card.Self+tapped | SpellDescription$ If CARDNAME is tapped, exile target creature card from a graveyard and untap CARDNAME.
SVar:DBUntap:DB$Untap | Defined$ Self | ConditionPresent$ Card.Self+tapped
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/eater_of_the_dead.jpg
SetInfo:DRK|Rare|http://magiccards.info/scans/en/dk/6.jpg
Oracle:{0}: If Eater of the Dead is tapped, exile target creature card from a graveyard and untap Eater of the Dead.
End

View File

@@ -10,4 +10,6 @@ SVar:TrigSac:AB$ Sacrifice | Cost$ 0 | Defined$ Self
SVar:RemAIDeck:True
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/jihad.jpg
SetInfo:ARN|Uncommon|http://magiccards.info/scans/en/an/60.jpg
Oracle:As Jihad enters the battlefield, choose a color and an opponent.\nWhite creatures get +2/+1 as long as the chosen player controls a nontoken permanent of the chosen color.\nWhen the chosen player controls no nontoken permanents of the chosen color, sacrifice Jihad.
End

View File

@@ -2064,6 +2064,9 @@ public class AbilityFactory {
}
} else {
resolveSubAbilities(sa);
if (usedStack) {
AllZone.getStack().finishResolving(sa, false);
}
}
}