- BFZ: Implemented Awaken and added Sheer Drop

This commit is contained in:
swordshine
2015-08-23 12:51:23 +00:00
parent c467b935a8
commit 5dc4f8b2ac

View File

@@ -2131,6 +2131,9 @@ public class CardFactoryUtil {
else if (keyword.startsWith("Dash")) { else if (keyword.startsWith("Dash")) {
card.addSpellAbility(makeDashSpell(card, keyword)); card.addSpellAbility(makeDashSpell(card, keyword));
} }
else if (keyword.startsWith("Awaken")) {
card.addSpellAbility(makeAwakenSpell(card, keyword));
}
else if (keyword.startsWith("Monstrosity")) { else if (keyword.startsWith("Monstrosity")) {
final String[] k = keyword.split(":"); final String[] k = keyword.split(":");
final String magnitude = k[0].substring(12); final String magnitude = k[0].substring(12);
@@ -3062,6 +3065,40 @@ public class CardFactoryUtil {
return dashSpell; return dashSpell;
} }
/**
* make Awaken keyword
* @param card
* @param awakenKeyword
* @return
*/
private static SpellAbility makeAwakenSpell(final Card card, final String awakenKeyword) {
final String[] k = awakenKeyword.split(":");
final String counters = k[1];
final String suffix = !counters.equals("1") ? "s" : "";
final Cost awakenCost = new Cost(k[2], false);
card.removeIntrinsicKeyword(awakenKeyword);
final SpellAbility awakenSpell = card.getFirstSpellAbility().copy();
final String awaken = "DB$ PutCounter | CounterType$ P1P1 | CounterNum$ "+ counters + " | "
+ "ValidTgts$ Land.YouCtrl | TgtPrompt$ Select target land you control | SubAbility$"
+ " AwakenAnimate";
final String dbAnimate = "DB$ Animate | Defined$ Targeted | Power$ 0 | Toughness$ 0 | Types$"
+ " Creature,Elemental | Permanent$ True | Keywords$ Haste";
card.setSVar("AwakenAnimate", dbAnimate);
final AbilitySub awakenSub = (AbilitySub) AbilityFactory.getAbility(awaken, card);
awakenSpell.setSubAbility(awakenSub);
awakenSub.setParent(awakenSpell);
String desc = "Awaken " + counters + " - " + awakenCost.toSimpleString() + " (If you cast "
+ "this spell for " + awakenCost.toSimpleString() + ", also put " + counters
+ " +1/+1 counter"+ suffix + " on target land you control and it becomes a 0/0 "
+ "Elemental creature with haste. It's still a land.)";
awakenSpell.setDescription(desc);
awakenSpell.setBasicSpell(false);
awakenSpell.setPayCosts(awakenCost);
return awakenSpell;
}
/** /**
* <p> * <p>
* hasKeyword. * hasKeyword.