- 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

@@ -18,6 +18,7 @@ forest.jpg http://resources.wizards.com/magic/cards/unh/en-us/card73946.jpg
forest1.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=2748 forest1.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=2748
forest2.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=587 forest2.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=587
forest3.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=586 forest3.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=586
earthbind.jpg http://www.wizards.com/global/images/magic/general/earthbind.jpg
honden_of_cleansing_fire.jpg http://www.wizards.com/global/images/magic/general/honden_of_cleansing_fire.jpg honden_of_cleansing_fire.jpg http://www.wizards.com/global/images/magic/general/honden_of_cleansing_fire.jpg
honden_of_infinite_rage.jpg http://www.wizards.com/global/images/magic/general/honden_of_infinite_rage.jpg honden_of_infinite_rage.jpg http://www.wizards.com/global/images/magic/general/honden_of_infinite_rage.jpg
honden_of_lifes_web.jpg http://www.wizards.com/global/images/magic/general/honden_of_lifes_web.jpg honden_of_lifes_web.jpg http://www.wizards.com/global/images/magic/general/honden_of_lifes_web.jpg

View File

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