- A few minor edits and StringBuilder mods. Changing "T" to "tap".

This commit is contained in:
jendave
2011-08-06 06:15:45 +00:00
parent c6428f09e2
commit b4938a68a3
3 changed files with 21 additions and 21 deletions

View File

@@ -6856,8 +6856,6 @@ public class CardFactory implements NewConstants {
}//*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("Dragon Blood")) {
Ability_Tap ability = new Ability_Tap(card, "3") {
@@ -6882,11 +6880,14 @@ public class CardFactory implements NewConstants {
}
};
ability.setBeforePayMana(CardFactoryUtil.input_targetCreature(ability));
ability.setDescription("3, T: Put a +1/+1 counter on target creature.");
ability.setStackDescription(card + ": put a +1/+1 counter on target Creature.");
ability.setDescription("3, tap: Put a +1/+1 counter on target creature.");
StringBuilder sb = new StringBuilder();
sb.append(card).append(": put a +1/+1 counter on target Creature.");
ability.setStackDescription(sb.toString());
card.addSpellAbility(ability);
}//*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("AEther Vial")) {
//final int[] converted = null;
@@ -8197,7 +8198,7 @@ public class CardFactory implements NewConstants {
}
};
ability.setBeforePayMana(runtime);
ability.setDescription("T, Sacrifice Ashnod's Transmogrant: put a +1/+1 counter on target nonartifact creature. That creature becomes an artifact in addition to its other types.");
ability.setDescription("tap, Sacrifice Ashnod's Transmogrant: put a +1/+1 counter on target nonartifact creature. That creature becomes an artifact in addition to its other types.");
card.addSpellAbility(ability);
}//*************** END ************ END **************************