fixed errors in groovy code
parent
1e7f6f1d71
commit
95640e2aee
|
@ -9,7 +9,7 @@
|
||||||
player,
|
player,
|
||||||
creature,
|
creature,
|
||||||
this,
|
this,
|
||||||
creature+" gains lifelink until end of turn."
|
"RN gains lifelink until end of turn."
|
||||||
):
|
):
|
||||||
MagicEvent.NONE;
|
MagicEvent.NONE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
cardOnStack,
|
cardOnStack,
|
||||||
MagicTargetChoice.POS_TARGET_PLAYER,
|
MagicTargetChoice.POS_TARGET_PLAYER,
|
||||||
this,
|
this,
|
||||||
"Target player$ gains 7 life."
|
'Target player$ gains 7 life.'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
player,
|
player,
|
||||||
MagicTargetChoice.TARGET_OPPONENT,
|
MagicTargetChoice.TARGET_OPPONENT,
|
||||||
this,
|
this,
|
||||||
"Target opponent$ loses 3 life."
|
'Target opponent$ loses 3 life.'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
new MagicPayManaCostChoice(MagicManaCost.create("{2}"))
|
new MagicPayManaCostChoice(MagicManaCost.create("{2}"))
|
||||||
),
|
),
|
||||||
this,
|
this,
|
||||||
"You may$ pay {2}$. If you do, draw a card."
|
'You may$ pay {2}$. If you do, draw a card.'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
player,
|
player,
|
||||||
creature,
|
creature,
|
||||||
this,
|
this,
|
||||||
creature + " gets +2/+2 until end of turn."
|
"RN gets +2/+2 until end of turn."
|
||||||
):
|
):
|
||||||
MagicEvent.NONE;
|
MagicEvent.NONE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue