1) Deleted the cards from cards.txt which use the old "When this card comes into play, draw a card." keyword.

2) Changed the keyword text to read "When CARDNAME comes into play, draw a card." and I then pasted these updated versions of these cards at the top of the cards.txt file.
3) Changed the keyword test line to reflect this in CardFactory.java.
This commit is contained in:
jendave
2011-08-06 04:06:29 +00:00
parent 3a19b1ccdb
commit 10a69ca9ab
2 changed files with 150 additions and 150 deletions

View File

@@ -3382,7 +3382,7 @@ public class CardFactory implements NewConstants {
////////////////////////////////////////////////////////////////
if(card.getKeyword().contains("When this card comes into play, draw a card.")) {
if(card.getKeyword().contains("When CARDNAME comes into play, draw a card.")) {
final SpellAbility ability = new Ability(card, "0") {
@Override