mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Added etbCounter keyword for cards that enter the battlefield with any type of counter. (ex. etbCounter:P1P1:3)
This commit is contained in:
@@ -4439,6 +4439,38 @@ public class CardFactory implements NewConstants {
|
|||||||
card.addSpellAbility(ability);
|
card.addSpellAbility(ability);
|
||||||
} // if Spike
|
} // if Spike
|
||||||
|
|
||||||
|
int etbCounter = hasKeyword(card, "etbCounter"); // etbCounter:CounterType:CounterAmount
|
||||||
|
// enters the battlefield with CounterAmount of CounterType
|
||||||
|
if(etbCounter != -1) {
|
||||||
|
String parse = card.getKeyword().get(etbCounter).toString();
|
||||||
|
card.removeIntrinsicKeyword(parse);
|
||||||
|
|
||||||
|
String p[] = parse.split(":");
|
||||||
|
final Counters counter = Counters.valueOf(p[1]);
|
||||||
|
final int numCounters = Integer.parseInt(p[2]);
|
||||||
|
|
||||||
|
StringBuilder sb = new StringBuilder(card.getSpellText());
|
||||||
|
if (sb.length() != 0)
|
||||||
|
sb.append("\n");
|
||||||
|
|
||||||
|
sb.append(card.getName());
|
||||||
|
sb.append(" enters the battlefield with ");
|
||||||
|
sb.append(numCounters);
|
||||||
|
sb.append(" ");
|
||||||
|
sb.append(counter.getName());
|
||||||
|
sb.append(" counters on it.");
|
||||||
|
|
||||||
|
card.setText(sb.toString());
|
||||||
|
|
||||||
|
card.addComesIntoPlayCommand(new Command() {
|
||||||
|
private static final long serialVersionUID = -2292898970576123040L;
|
||||||
|
|
||||||
|
public void execute() {
|
||||||
|
card.addCounter(counter, numCounters);
|
||||||
|
}
|
||||||
|
});//ComesIntoPlayCommand
|
||||||
|
} // if etbCounter
|
||||||
|
|
||||||
|
|
||||||
if(hasKeyword(card, "1, Sacrifice CARDNAME: Draw a card.") != -1) {
|
if(hasKeyword(card, "1, Sacrifice CARDNAME: Draw a card.") != -1) {
|
||||||
int n = hasKeyword(card, "1, Sacrifice CARDNAME: Draw a card.");
|
int n = hasKeyword(card, "1, Sacrifice CARDNAME: Draw a card.");
|
||||||
|
|||||||
Reference in New Issue
Block a user