mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
add Death Cultist from Rise of the Eldrazi
This commit is contained in:
@@ -38,6 +38,7 @@ snow_covered_mountain.jpg http://www.wizards.com/global/images/magic/gene
|
||||
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
|
||||
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
||||
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
||||
death_cultist.jpg http://www.wizards.com/global/images/magic/general/death_cultist.jpg
|
||||
everflowing_chalice.jpg http://www.wizards.com/global/images/magic/general/everflowing_chalice.jpg
|
||||
consume_the_meek.jpg http://www.wizards.com/global/images/magic/general/consume_the_meek.jpg
|
||||
awakening_zone.jpg http://www.wizards.com/global/images/magic/general/awakening_zone.jpg
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
Death Cultist
|
||||
B
|
||||
Creature Human Wizard
|
||||
Sacrifice Death Cultist: Target player loses 1 life and you gain 1 life.
|
||||
1/1
|
||||
|
||||
Everflowing Chalice
|
||||
0
|
||||
Artifact
|
||||
|
||||
@@ -17628,7 +17628,38 @@ public class CardFactory_Creatures {
|
||||
card.addComesIntoPlayCommand(intoPlay);
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Death Cultist")) {
|
||||
/*
|
||||
* Sacrifice Death Cultist: Target player loses 1 life and you gain 1 life.
|
||||
*/
|
||||
final SpellAbility ability = new Ability(card, "0") {
|
||||
|
||||
@Override
|
||||
public boolean canPlayAI() {
|
||||
PlayerLife human = AllZone.GameAction.getPlayerLife(Constant.Player.Human);
|
||||
return human.getLife() == 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void resolve() {
|
||||
//AllZone.GameAction.drawCard(sourceCard.getController());
|
||||
final String target = getTargetPlayer();
|
||||
PlayerLife targetLife = AllZone.GameAction.getPlayerLife(target);
|
||||
final String player = card.getController();
|
||||
PlayerLife playerLife = AllZone.GameAction.getPlayerLife(player);
|
||||
|
||||
AllZone.GameAction.sacrifice(card);
|
||||
|
||||
targetLife.subtractLife(1);
|
||||
playerLife.addLife(1);
|
||||
}
|
||||
};
|
||||
//ability.setDescription("1, Sacrifice " + cardName + ": Draw a card.");
|
||||
//ability.setStackDescription(cardName + " - Target player loses 1 life and controller gains 1 life.");
|
||||
card.addSpellAbility(ability);
|
||||
ability.setBeforePayMana(CardFactoryUtil.input_targetPlayer(ability));
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
// Cards with Cycling abilities
|
||||
// -1 means keyword "Cycling" not found
|
||||
|
||||
Reference in New Issue
Block a user