Small minor fixed/changes.

This commit is contained in:
LevelX2 2013-01-13 10:43:01 +01:00
parent 7f9ccc1175
commit 78f2e09515
4 changed files with 3 additions and 9 deletions

View file

@ -71,7 +71,7 @@ public class BorosKeyrune extends CardImpl<BorosKeyrune> {
private class BorosKeyruneToken extends Token {
BorosKeyruneToken() {
super("Soldier", "a 1/1 red and white Soldier artifact creature with double strike");
super("Soldier", "1/1 red and white Soldier artifact creature with double strike");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
color.setRed(true);

View file

@ -71,7 +71,7 @@ public class DimirKeyrune extends CardImpl<DimirKeyrune> {
private class DimirKeyruneToken extends Token {
DimirKeyruneToken() {
super("Horror", "a 2/2 blue and black Horror until end of turn and is unblockable this turn");
super("Horror", "2/2 blue and black Horror until end of turn and is unblockable this turn");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
color.setBlue(true);

View file

@ -71,7 +71,7 @@ public class GruulKeyrune extends CardImpl<GruulKeyrune> {
private class GruulKeyruneToken extends Token {
GruulKeyruneToken() {
super("Beast", "a 3/2 red and green Beast artifact creature with trample");
super("Beast", "3/2 red and green Beast artifact creature with trample");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
color.setRed(true);

View file

@ -58,14 +58,8 @@ import java.util.UUID;
*/
public class DearlyDeparted extends CardImpl<DearlyDeparted> {
private static final FilterCreaturePermanent filterHuman = new FilterCreaturePermanent("Human creatures");
private static final String ruleText = "As long as Dearly Departed is in your graveyard, each Human creature you control enters the battlefield with an additional +1/+1 counter on it";
static {
filterHuman.add(new SubtypePredicate("Human"));
}
public DearlyDeparted(UUID ownerId) {
super(ownerId, 9, "Dearly Departed", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{4}{W}{W}");
this.expansionSetCode = "ISD";