mirror of
https://github.com/correl/mage.git
synced 2024-12-28 11:14:13 +00:00
[NEC] Implemented Myojin of Towering Might
This commit is contained in:
parent
4a854f7fc1
commit
417625298d
2 changed files with 66 additions and 0 deletions
65
Mage.Sets/src/mage/cards/m/MyojinOfToweringMight.java
Normal file
65
Mage.Sets/src/mage/cards/m/MyojinOfToweringMight.java
Normal file
|
@ -0,0 +1,65 @@
|
|||
package mage.cards.m;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldAbility;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.condition.common.CastFromHandSourcePermanentCondition;
|
||||
import mage.abilities.costs.common.RemoveCountersSourceCost;
|
||||
import mage.abilities.decorator.ConditionalOneShotEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.abilities.effects.common.counter.DistributeCountersEffect;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.target.common.TargetCreaturePermanentAmount;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class MyojinOfToweringMight extends CardImpl {
|
||||
|
||||
public MyojinOfToweringMight(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{G}{G}{G}");
|
||||
|
||||
this.addSuperType(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.SPIRIT);
|
||||
this.power = new MageInt(8);
|
||||
this.toughness = new MageInt(8);
|
||||
|
||||
// Myojin of Towering Might enters the battlefield with an indestructible counter on it if you cast it from your hand.
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(
|
||||
new AddCountersSourceEffect(CounterType.INDESTRUCTIBLE.createInstance()),
|
||||
CastFromHandSourcePermanentCondition.instance, ""
|
||||
), "{this} enters the battlefield with an indestructible counter on it if you cast it from your hand"));
|
||||
|
||||
// Remove an indestructible counter from Myojin of Towering Might: Distribute eight +1/+1 counters among any number of target creatures you control. They gain trample until end of turn.
|
||||
Ability ability = new SimpleActivatedAbility(new DistributeCountersEffect(
|
||||
CounterType.P1P1, 8, false,
|
||||
"any number of target creatures you control"
|
||||
), new RemoveCountersSourceCost(CounterType.INDESTRUCTIBLE.createInstance()));
|
||||
ability.addEffect(new GainAbilityTargetEffect(
|
||||
TrampleAbility.getInstance(), Duration.EndOfTurn
|
||||
).setText("They gain trample until end of turn"));
|
||||
ability.addTarget(new TargetCreaturePermanentAmount(8, StaticFilters.FILTER_CONTROLLED_CREATURES));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private MyojinOfToweringMight(final MyojinOfToweringMight card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MyojinOfToweringMight copy() {
|
||||
return new MyojinOfToweringMight(this);
|
||||
}
|
||||
}
|
|
@ -22,5 +22,6 @@ public final class NeonDynastyCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Chishiro, the Shattered Blade", 1, Rarity.MYTHIC, mage.cards.c.ChishiroTheShatteredBlade.class));
|
||||
cards.add(new SetCardInfo("Kotori, Pilot Prodigy", 2, Rarity.MYTHIC, mage.cards.k.KotoriPilotProdigy.class));
|
||||
cards.add(new SetCardInfo("Myojin of Roaring Blades", 36, Rarity.RARE, mage.cards.m.MyojinOfRoaringBlades.class));
|
||||
cards.add(new SetCardInfo("Myojin of Towering Might", 38, Rarity.RARE, mage.cards.m.MyojinOfToweringMight.class));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue