Few more cards

This commit is contained in:
Loki 2011-08-24 09:47:32 +03:00
parent e4537dacda
commit 4ddadaf9bb
19 changed files with 1175 additions and 14 deletions

View file

@ -52,7 +52,8 @@ public enum CounterType {
AWAKENING(new AwakeningCounter().name),
DEVOTION(new DevotionCounter().name),
DIVINE(new DivineCounter().name),
WISH(new WishCounter().name);
WISH(new WishCounter().name),
HOOFPRINT(new HoofprintCounter().name);
private String name;
@ -120,6 +121,8 @@ public enum CounterType {
return new DivineCounter(amount);
case WISH:
return new WishCounter(amount);
case HOOFPRINT:
return new HoofprintCounter(amount);
}
return null;
}

View file

@ -0,0 +1,19 @@
package mage.counters.common;
import mage.counters.Counter;
/**
* @author Loki
*/
public class HoofprintCounter extends Counter<FeatherCounter> {
public HoofprintCounter() {
super("Hoofprint");
this.count = 1;
}
public HoofprintCounter(int amount) {
super("Hoofprint");
this.count = amount;
}
}

View file

@ -0,0 +1,21 @@
package mage.game.permanent.token;
import mage.Constants;
import mage.MageInt;
/**
*
* @author Loki
*/
public class KithkinToken extends Token{
public KithkinToken() {
super("Kithkin", "1/1 white Kithkin Soldier creature token");
cardType.add(Constants.CardType.CREATURE);
color.setWhite(true);
subtype.add("Kithkin");
subtype.add("Soldier");
power = new MageInt(1);
toughness = new MageInt(1);
}
}