add Cyclopean Mummy (from Legends)

This commit is contained in:
jendave
2011-08-06 14:56:41 +00:00
parent 2207ba140e
commit f4793bcfaf
3 changed files with 22 additions and 0 deletions

1
.gitattributes vendored
View File

@@ -1113,6 +1113,7 @@ res/cardsfolder/cursed_ronin.txt -text svneol=native#text/plain
res/cardsfolder/cursed_scroll.txt -text svneol=native#text/plain res/cardsfolder/cursed_scroll.txt -text svneol=native#text/plain
res/cardsfolder/cut_the_earthly_bond.txt -text svneol=native#text/plain res/cardsfolder/cut_the_earthly_bond.txt -text svneol=native#text/plain
res/cardsfolder/cutthroat_il_dal.txt -text svneol=native#text/plain res/cardsfolder/cutthroat_il_dal.txt -text svneol=native#text/plain
res/cardsfolder/cyclopean_mummy.txt -text svneol=native#text/plain
res/cardsfolder/cylian_elf.txt -text svneol=native#text/plain res/cardsfolder/cylian_elf.txt -text svneol=native#text/plain
res/cardsfolder/cystbearer.txt -text svneol=native#text/plain res/cardsfolder/cystbearer.txt -text svneol=native#text/plain
res/cardsfolder/daggerback_basilisk.txt -text svneol=native#text/plain res/cardsfolder/daggerback_basilisk.txt -text svneol=native#text/plain

View File

@@ -0,0 +1,8 @@
Name:Cyclopean Mummy
ManaCost:1 B
Types:Creature Zombie
Text:When CARDNAME is put into a graveyard from the battlefield, exile CARDNAME.
PT:2/1
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/cyclopean_mummy.jpg
End

View File

@@ -13147,6 +13147,19 @@ public class CardFactory_Creatures {
card.addComesIntoPlayCommand(intoPlay); card.addComesIntoPlayCommand(intoPlay);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("Cyclopean Mummy")) {
Command exile = new Command() {
private static final long serialVersionUID = -5254763975019516955L;
public void execute() {
AllZone.GameAction.exile(card);
}//execute()
};//Command
card.addDestroyCommand(exile);
}//*************** END ************ END **************************
if(hasKeyword(card, "Level up") != -1 && hasKeyword(card, "maxLevel") != -1) if(hasKeyword(card, "Level up") != -1 && hasKeyword(card, "maxLevel") != -1)