mirror of
https://github.com/correl/mage.git
synced 2025-04-02 17:00:11 -09:00
[NEO] Implemented Harmonious Emergence
This commit is contained in:
parent
b130e01187
commit
55181ec7f7
3 changed files with 117 additions and 1 deletions
Mage.Sets/src/mage
|
@ -47,7 +47,7 @@ public final class CracklingEmergence extends CardImpl {
|
|||
.withColor("R")
|
||||
.withSubType(SubType.SPIRIT)
|
||||
.withAbility(HasteAbility.getInstance()),
|
||||
"Enchanted land is a 3/3 red Spirit creature with haste. It's still a land.",
|
||||
"enchanted land is a 3/3 red Spirit creature with haste. It's still a land",
|
||||
Duration.WhileOnBattlefield, BecomesCreatureAttachedEffect.LoseType.COLOR
|
||||
)));
|
||||
|
||||
|
|
115
Mage.Sets/src/mage/cards/h/HarmoniousEmergence.java
Normal file
115
Mage.Sets/src/mage/cards/h/HarmoniousEmergence.java
Normal file
|
@ -0,0 +1,115 @@
|
|||
package mage.cards.h;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.ReplacementEffectImpl;
|
||||
import mage.abilities.effects.common.AttachEffect;
|
||||
import mage.abilities.effects.common.continuous.BecomesCreatureAttachedEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
||||
import mage.abilities.keyword.EnchantAbility;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.abilities.keyword.IndestructibleAbility;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.permanent.token.custom.CreatureToken;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.target.targetpointer.FixedTarget;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class HarmoniousEmergence extends CardImpl {
|
||||
|
||||
public HarmoniousEmergence(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{G}");
|
||||
|
||||
this.subtype.add(SubType.AURA);
|
||||
|
||||
// Enchant land you control
|
||||
TargetPermanent auraTarget = new TargetPermanent(StaticFilters.FILTER_CONTROLLED_PERMANENT_LAND);
|
||||
this.getSpellAbility().addTarget(auraTarget);
|
||||
this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature));
|
||||
this.addAbility(new EnchantAbility(auraTarget.getTargetName()));
|
||||
|
||||
// Enchanted land is a 4/5 green Spirit creature with vigilance and haste. It's still a land.
|
||||
this.addAbility(new SimpleStaticAbility(new BecomesCreatureAttachedEffect(
|
||||
new CreatureToken(4, 5)
|
||||
.withColor("G")
|
||||
.withSubType(SubType.SPIRIT)
|
||||
.withAbility(VigilanceAbility.getInstance())
|
||||
.withAbility(HasteAbility.getInstance()),
|
||||
"enchanted land is a 4/5 green Spirit creature with vigilance and haste. It's still a land",
|
||||
Duration.WhileOnBattlefield, BecomesCreatureAttachedEffect.LoseType.COLOR
|
||||
)));
|
||||
|
||||
// If enchanted land would be destroyed, instead sacrifice Harmonious Emergence and that land gains indestructible until end of turn.
|
||||
this.addAbility(new SimpleStaticAbility(new HarmoniousEmergenceEffect()));
|
||||
}
|
||||
|
||||
private HarmoniousEmergence(final HarmoniousEmergence card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HarmoniousEmergence copy() {
|
||||
return new HarmoniousEmergence(this);
|
||||
}
|
||||
}
|
||||
|
||||
class HarmoniousEmergenceEffect extends ReplacementEffectImpl {
|
||||
|
||||
HarmoniousEmergenceEffect() {
|
||||
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||
staticText = "if enchanted land would be destroyed, instead sacrifice " +
|
||||
"{this} and that land gains indestructible until end of turn";
|
||||
}
|
||||
|
||||
private HarmoniousEmergenceEffect(final HarmoniousEmergenceEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||
Permanent sourcePermanent = source.getSourcePermanentIfItStillExists(game);
|
||||
Permanent enchantedPermanent = game.getPermanent(event.getTargetId());
|
||||
if (sourcePermanent == null || enchantedPermanent == null) {
|
||||
return false;
|
||||
}
|
||||
sourcePermanent.sacrifice(source, game);
|
||||
game.addEffect(new GainAbilityTargetEffect(IndestructibleAbility.getInstance())
|
||||
.setTargetPointer(new FixedTarget(enchantedPermanent, game)), source);
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checksEventType(GameEvent event, Game game) {
|
||||
return event.getType() == GameEvent.EventType.DESTROY_PERMANENT;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||
Permanent sourcePermanent = source.getSourcePermanentIfItStillExists(game);
|
||||
return sourcePermanent != null && event.getTargetId().equals(sourcePermanent.getAttachedTo());
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public HarmoniousEmergenceEffect copy() {
|
||||
return new HarmoniousEmergenceEffect(this);
|
||||
}
|
||||
}
|
|
@ -114,6 +114,7 @@ public final class KamigawaNeonDynasty extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Greater Tanuki", 189, Rarity.COMMON, mage.cards.g.GreaterTanuki.class));
|
||||
cards.add(new SetCardInfo("Guardians of Oboro", 56, Rarity.COMMON, mage.cards.g.GuardiansOfOboro.class));
|
||||
cards.add(new SetCardInfo("Hand of Enlightenment", 11, Rarity.COMMON, mage.cards.h.HandOfEnlightenment.class));
|
||||
cards.add(new SetCardInfo("Harmonious Emergence", 190, Rarity.COMMON, mage.cards.h.HarmoniousEmergence.class));
|
||||
cards.add(new SetCardInfo("Heiko Yamazaki, the General", 146, Rarity.UNCOMMON, mage.cards.h.HeikoYamazakiTheGeneral.class));
|
||||
cards.add(new SetCardInfo("Heir of the Ancient Fang", 191, Rarity.COMMON, mage.cards.h.HeirOfTheAncientFang.class));
|
||||
cards.add(new SetCardInfo("Hidetsugu, Devouring Chaos", 99, Rarity.RARE, mage.cards.h.HidetsuguDevouringChaos.class));
|
||||
|
|
Loading…
Add table
Reference in a new issue