65 lines
2.2 KiB
Groovy
65 lines
2.2 KiB
Groovy
def PT = new MagicStatic(MagicLayer.SetPT, MagicStatic.UntilEOT) {
|
|
@Override
|
|
public void modPowerToughness(
|
|
final MagicPermanent source,
|
|
final MagicPermanent permanent,
|
|
final MagicPowerToughness pt) {
|
|
pt.set(3,4);
|
|
}
|
|
};
|
|
def AB = new MagicStatic(MagicLayer.Ability, MagicStatic.UntilEOT) {
|
|
@Override
|
|
public void modAbilityFlags(
|
|
final MagicPermanent source,
|
|
final MagicPermanent permanent,
|
|
final Set<MagicAbility> flags) {
|
|
flags.add(MagicAbility.Reach);
|
|
}
|
|
};
|
|
def ST = new MagicStatic(MagicLayer.Type, MagicStatic.UntilEOT) {
|
|
@Override
|
|
public void modSubTypeFlags(
|
|
final MagicPermanent permanent,
|
|
final Set<MagicSubType> flags) {
|
|
flags.add(MagicSubType.Elemental);
|
|
}
|
|
@Override
|
|
public int getTypeFlags(final MagicPermanent permanent,final int flags) {
|
|
return flags|MagicType.Creature.getMask();
|
|
}
|
|
};
|
|
def C = new MagicStatic(MagicLayer.Color, MagicStatic.UntilEOT) {
|
|
@Override
|
|
public int getColorFlags(final MagicPermanent permanent,final int flags) {
|
|
return MagicColor.Green.getMask()|MagicColor.White.getMask();
|
|
}
|
|
};
|
|
[
|
|
new MagicPermanentActivation(
|
|
[new MagicArtificialCondition(
|
|
MagicConditionFactory.ManaCost("{G}{G}{W}{W}")
|
|
)],
|
|
new MagicActivationHints(MagicTiming.Animate),
|
|
"Animate"
|
|
) {
|
|
@Override
|
|
public MagicEvent[] getCostEvent(final MagicPermanent source) {
|
|
return [
|
|
new MagicPayManaCostEvent(source, "{1}{G}{W}")
|
|
];
|
|
}
|
|
@Override
|
|
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
source,
|
|
this,
|
|
"Until end of turn, SN becomes a 3/4 green and white Elemental creature with reach. It's still a land."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
game.doAction(new MagicBecomesCreatureAction(event.getPermanent(),PT,AB,ST,C));
|
|
}
|
|
}
|
|
]
|