mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
- 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:
@@ -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
|
||||
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
|
||||
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_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
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user