mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
commit
a5e6b04fbe
3 changed files with 80 additions and 1 deletions
|
|
@ -74,6 +74,8 @@ import java.util.*;
|
|||
*/
|
||||
public class KickerAbility extends StaticAbility implements OptionalAdditionalSourceCosts {
|
||||
|
||||
private static final KickerAbility instance = new KickerAbility("");
|
||||
|
||||
protected static final String KICKER_KEYWORD = "Kicker";
|
||||
protected static final String KICKER_REMINDER_MANA = "You may pay an additional {cost} as you cast this spell.";
|
||||
protected static final String KICKER_REMINDER_COST = "You may {cost} in addition to any other costs as you cast this spell.";
|
||||
|
|
@ -113,6 +115,10 @@ public class KickerAbility extends StaticAbility implements OptionalAdditionalSo
|
|||
|
||||
}
|
||||
|
||||
public static KickerAbility getInstance() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
@Override
|
||||
public KickerAbility copy() {
|
||||
return new KickerAbility(this);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue