mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
Small minor fixed/changes.
This commit is contained in:
parent
7f9ccc1175
commit
78f2e09515
4 changed files with 3 additions and 9 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue