- Several of the setDescription() commands have an extra space before the ":" or is missing a space after the ":". I only changed the setDescription() in several areas to make the text more readable and consistent with the other card descriptions.

- Added pic url for earthbind to cards-pictures.jpg
This commit is contained in:
jendave
2011-08-06 02:57:46 +00:00
parent 6ef5388c2b
commit 570117f58a
2 changed files with 8 additions and 7 deletions

View File

@@ -240,7 +240,7 @@ public class CardFactory implements NewConstants {
String Desc = new String();
Desc = cardName + " gains " + keyword + " until end of turn.";
ability.setDescription(manaCost + " : " + Desc);
ability.setDescription(manaCost + ": " + Desc);
ability.setStackDescription(Desc);
card.addSpellAbility(ability);
@@ -340,7 +340,7 @@ public class CardFactory implements NewConstants {
Desc = Desc + defense[0];
Desc = Desc + " until end of turn.";
ability.setDescription(manaCost + " : " + Desc);
ability.setDescription(manaCost + ": " + Desc);
ability.setStackDescription(Desc);
card.addSpellAbility(ability);
@@ -440,7 +440,7 @@ public class CardFactory implements NewConstants {
Desc = Desc + defense[0];
Desc = Desc + " and gains " + keyword + " until end of turn.";
ability.setDescription(manaCost + " : " + Desc);
ability.setDescription(manaCost + ": " + Desc);
ability.setStackDescription(Desc);
card.addSpellAbility(ability);
@@ -560,7 +560,7 @@ public class CardFactory implements NewConstants {
}//resolve()
};//SpellAbility
ability.setDescription(manaCost + ":" + Desc);
ability.setDescription(manaCost + ": " + Desc);
ability.setStackDescription(Desc);
ability.setBeforePayMana(CardFactoryUtil.input_targetCreature(ability));
@@ -637,7 +637,7 @@ public class CardFactory implements NewConstants {
}//resolve()
};//SpellAbility
ability.setDescription("tap:" + Desc);
ability.setDescription("tap: " + Desc);
ability.setStackDescription(Desc);
ability.setBeforePayMana(CardFactoryUtil.input_targetCreature(ability));
@@ -714,7 +714,7 @@ public class CardFactory implements NewConstants {
}//resolve()
};//SpellAbility
ability.setDescription(manaCost + ", tap:" + Desc);
ability.setDescription(manaCost + ", tap: " + Desc);
ability.setStackDescription(Desc);
ability.setBeforePayMana(CardFactoryUtil.input_targetCreature(ability));
@@ -811,7 +811,7 @@ public class CardFactory implements NewConstants {
String Desc = new String();
Desc = "Regenerate " + cardName;
a1.setDescription(manacost + " : " + Desc);
a1.setDescription(manacost + ": " + Desc);
a1.setStackDescription(Desc);
a1.setBeforePayMana(new Input_PayManaCost(a1));