mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Implemented Huntmaster Liger
This commit is contained in:
parent
9ba949369e
commit
711e01f81e
2 changed files with 49 additions and 0 deletions
48
Mage.Sets/src/mage/cards/h/HuntmasterLiger.java
Normal file
48
Mage.Sets/src/mage/cards/h/HuntmasterLiger.java
Normal file
|
@ -0,0 +1,48 @@
|
|||
package mage.cards.h;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.MutatesSourceTriggeredAbility;
|
||||
import mage.abilities.dynamicvalue.common.SourceMutatedCount;
|
||||
import mage.abilities.effects.common.continuous.BoostControlledEffect;
|
||||
import mage.abilities.keyword.MutateAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.StaticFilters;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class HuntmasterLiger extends CardImpl {
|
||||
|
||||
public HuntmasterLiger(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||
|
||||
this.subtype.add(SubType.CAT);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Mutate {2}{W}
|
||||
this.addAbility(new MutateAbility(this, "{2}{W}"));
|
||||
|
||||
// Whenever this creature mutates, other creatures you control get +X/+X until end of turn, where X is the number of times this creature has mutated.
|
||||
this.addAbility(new MutatesSourceTriggeredAbility(new BoostControlledEffect(
|
||||
SourceMutatedCount.instance, SourceMutatedCount.instance, Duration.EndOfTurn,
|
||||
StaticFilters.FILTER_PERMANENT_CREATURE, true, true
|
||||
)));
|
||||
}
|
||||
|
||||
private HuntmasterLiger(final HuntmasterLiger card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HuntmasterLiger copy() {
|
||||
return new HuntmasterLiger(this);
|
||||
}
|
||||
}
|
||||
// it's like a lion and a tiger mixed... bred for its skills in magic
|
|
@ -52,6 +52,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Gloom Pangolin", 89, Rarity.COMMON, mage.cards.g.GloomPangolin.class));
|
||||
cards.add(new SetCardInfo("Glowstone Recluse", 156, Rarity.UNCOMMON, mage.cards.g.GlowstoneRecluse.class));
|
||||
cards.add(new SetCardInfo("Grimdancer", 90, Rarity.UNCOMMON, mage.cards.g.Grimdancer.class));
|
||||
cards.add(new SetCardInfo("Huntmaster Liger", 16, Rarity.UNCOMMON, mage.cards.h.HuntmasterLiger.class));
|
||||
cards.add(new SetCardInfo("Indatha Crystal", 235, Rarity.UNCOMMON, mage.cards.i.IndathaCrystal.class));
|
||||
cards.add(new SetCardInfo("Insatiable Hemophage", 93, Rarity.UNCOMMON, mage.cards.i.InsatiableHemophage.class));
|
||||
cards.add(new SetCardInfo("Ketria Crystal", 236, Rarity.UNCOMMON, mage.cards.k.KetriaCrystal.class));
|
||||
|
|
Loading…
Reference in a new issue