mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
[ZNR] Implemented Akoum Hellhound
This commit is contained in:
parent
df8a87aba4
commit
823b383a7f
3 changed files with 41 additions and 0 deletions
39
Mage.Sets/src/mage/cards/a/AkoumHellhound.java
Normal file
39
Mage.Sets/src/mage/cards/a/AkoumHellhound.java
Normal file
|
@ -0,0 +1,39 @@
|
|||
package mage.cards.a;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.LandfallAbility;
|
||||
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class AkoumHellhound extends CardImpl {
|
||||
|
||||
public AkoumHellhound(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{R}");
|
||||
|
||||
this.subtype.add(SubType.ELEMENTAL);
|
||||
this.subtype.add(SubType.DOG);
|
||||
this.power = new MageInt(0);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Landfall — Whenever a land enters the battlefield under your control, Akoum Hellhound gets +2/+2 until end of turn.
|
||||
this.addAbility(new LandfallAbility(new BoostSourceEffect(2, 2, Duration.EndOfTurn)));
|
||||
}
|
||||
|
||||
private AkoumHellhound(final AkoumHellhound card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AkoumHellhound copy() {
|
||||
return new AkoumHellhound(this);
|
||||
}
|
||||
}
|
|
@ -72,6 +72,7 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
this.maxCardNumberInBooster = 280;
|
||||
|
||||
cards.add(new SetCardInfo("Acquisitions Expert", 89, Rarity.UNCOMMON, mage.cards.a.AcquisitionsExpert.class));
|
||||
cards.add(new SetCardInfo("Akoum Hellhound", 133, Rarity.COMMON, mage.cards.a.AkoumHellhound.class));
|
||||
cards.add(new SetCardInfo("Archpriest of Iona", 5, Rarity.RARE, mage.cards.a.ArchpriestOfIona.class));
|
||||
cards.add(new SetCardInfo("Ardent Electromancer", 135, Rarity.COMMON, mage.cards.a.ArdentElectromancer.class));
|
||||
cards.add(new SetCardInfo("Bloodchief's Thirst", 94, Rarity.UNCOMMON, mage.cards.b.BloodchiefsThirst.class));
|
||||
|
|
|
@ -38761,6 +38761,7 @@ Demon's Disciple|Zendikar Rising|97|U|{2}{B}|Creature - Human Cleric|3|1|When De
|
|||
Drana, the Last Bloodchief|Zendikar Rising|98|M|{3}{B}{B}|Legendary Creature - Vampire Cleric|4|4|Flying$Whenever Drana, the Last Bloodchief attacks, defending player chooses a nonlegendary creature card in your graveyard. You return that card to the battlefield with a +1/+1 counter on it. The creature is a Vampire in addition to its other types.|
|
||||
Pelakka Caverns|Zendikar Rising|120|U||Land|||Pelakka Caverns enters the battlefield tapped.${T}: Add {B}.|
|
||||
Pelakka Predation|Zendikar Rising|120|U|{2}{B}|Sorcery|||Target opponent reveals their hand. You may choose a card from it with converted mana cost 3 or greater. That player discards that card.|
|
||||
Akoum Hellhound|Zendikar Rising|133|C|{R}|Creature - Elemental Dog|0|1|Landfall — Whenever a land enters the battlefield under your control, Akoum Hellhound gets +2/+2 until end of turn.|
|
||||
Akoum Teeth|Zendikar Rising|134|U||Land|||Akoum Teeth enters the battlefield tapped.${T}: Add {R}.|
|
||||
Akoum Warrior|Zendikar Rising|134|U|{5}{R}|Creature - Minotaur Warrior|4|5|Trample|
|
||||
Ardent Electromancer|Zendikar Rising|135|C|{2}{R}|Creature - Human Wizard|3|2|When Ardent Electromancer enters the battlefield, add {R} for each creature in your party.|
|
||||
|
|
Loading…
Reference in a new issue