mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
add Cyclopean Mummy (from Legends)
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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/cut_the_earthly_bond.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/cystbearer.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/daggerback_basilisk.txt -text svneol=native#text/plain
|
||||
|
||||
8
res/cardsfolder/cyclopean_mummy.txt
Normal file
8
res/cardsfolder/cyclopean_mummy.txt
Normal 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
|
||||
@@ -13147,6 +13147,19 @@ public class CardFactory_Creatures {
|
||||
|
||||
card.addComesIntoPlayCommand(intoPlay);
|
||||
}//*************** 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)
|
||||
|
||||
Reference in New Issue
Block a user