From cbb09a56d8727aefbf670834956602f521aac402 Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 02:55:00 +0000 Subject: [PATCH] Primal Boost: Cycling is now keyword. Some descriptive text was appearing twice, fixed. Added NOTE about the missing ability for this card. --- res/cards.txt | 3 ++- src/forge/CardFactory.java | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/res/cards.txt b/res/cards.txt index f1a594ec5df..90948fd20a8 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -12590,7 +12590,8 @@ no text Primal Boost 2 G Instant -Target creature gets +4/+4 until end of turn. Cycling 2G. When you cycle Primal Boost, you may have target creature get +1/+1 until end of turn. +(NOTE: "When you cycle Primal Boost, you may have target creature get +1/+1 until end of turn." not implemented.) +Cycling:2 G Redwood Treefolk 4 G diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index a0d595fbef9..c75ca16d614 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -14512,11 +14512,11 @@ public class CardFactory implements NewConstants { } }//resolve() }; - spell.setDescription("Target creature gets +4/+4 until end of turn."); + spell.setDescription("\r\nTarget creature gets +4/+4 until end of turn."); spell.setBeforePayMana(CardFactoryUtil.input_targetCreature(spell)); card.clearSpellAbility(); card.addSpellAbility(spell); - card.addSpellAbility(CardFactoryUtil.ability_cycle(card, "2 G")); + //card.addSpellAbility(CardFactoryUtil.ability_cycle(card, "2 G")); }//*************** END ************ END ************************** //*************** START *********** START **************************