37 lines
1.3 KiB
Groovy
37 lines
1.3 KiB
Groovy
[
|
|
new MagicPermanentActivation(
|
|
[MagicConditionFactory.ManaCost("{G}")],
|
|
new MagicActivationHints(MagicTiming.Pump,false,1),
|
|
"Color"
|
|
) {
|
|
@Override
|
|
public MagicEvent[] getCostEvent(final MagicPermanent source) {
|
|
return [
|
|
new MagicPayManaCostEvent(source,"{G}"),
|
|
new MagicPlayAbilityEvent(source)
|
|
];
|
|
}
|
|
@Override
|
|
public MagicEvent getPermanentEvent(final MagicPermanent source, final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
source,
|
|
MagicColorChoice.RED_WHITE_BLUE_INSTANCE,
|
|
this,
|
|
"SN becomes the color\$ of your choice until end of turn."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
final MagicPermanent permanent=event.getPermanent();
|
|
game.doAction(new MagicAddStaticAction(permanent,
|
|
new MagicStatic(MagicLayer.SwitchPT,MagicStatic.UntilEOT) {
|
|
@Override
|
|
public int getColorFlags(final MagicPermanent perm, final int flags) {
|
|
return event.getChosenColor().getMask();
|
|
}
|
|
}));
|
|
game.doAction(new MagicPlayAbilityAction(permanent));
|
|
}
|
|
}
|
|
]
|