mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
Implemented Honor the God-Pharaoh
This commit is contained in:
parent
8f36dc3a8c
commit
b788b2f865
2 changed files with 37 additions and 0 deletions
36
Mage.Sets/src/mage/cards/h/HonorTheGodPharaoh.java
Normal file
36
Mage.Sets/src/mage/cards/h/HonorTheGodPharaoh.java
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
package mage.cards.h;
|
||||
|
||||
import mage.abilities.costs.common.DiscardCardCost;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.keyword.AmassEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class HonorTheGodPharaoh extends CardImpl {
|
||||
|
||||
public HonorTheGodPharaoh(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{R}");
|
||||
|
||||
// As an additional cost to cast this spell, discard a card.
|
||||
this.getSpellAbility().addCost(new DiscardCardCost(false));
|
||||
|
||||
// Draw two cards. Amass 1.
|
||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2).setText("draw two cards."));
|
||||
this.getSpellAbility().addEffect(new AmassEffect(1));
|
||||
}
|
||||
|
||||
private HonorTheGodPharaoh(final HonorTheGodPharaoh card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HonorTheGodPharaoh copy() {
|
||||
return new HonorTheGodPharaoh(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -37,6 +37,7 @@ public final class WarOfTheSpark extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Forest", 263, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Forest", 264, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Herald of the Dreadhorde", 93, Rarity.COMMON, mage.cards.h.HeraldOfTheDreadhorde.class));
|
||||
cards.add(new SetCardInfo("Honor the God-Pharaoh", 132, Rarity.COMMON, mage.cards.h.HonorTheGodPharaoh.class));
|
||||
cards.add(new SetCardInfo("Ignite the Beacon", 18, Rarity.RARE, mage.cards.i.IgniteTheBeacon.class));
|
||||
cards.add(new SetCardInfo("Interplanar Beacon", 247, Rarity.UNCOMMON, mage.cards.i.InterplanarBeacon.class));
|
||||
cards.add(new SetCardInfo("Invade the City", 201, Rarity.UNCOMMON, mage.cards.i.InvadeTheCity.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue