mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Few more cards
This commit is contained in:
parent
e4537dacda
commit
4ddadaf9bb
19 changed files with 1175 additions and 14 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
19
Mage/src/mage/counters/common/HoofprintCounter.java
Normal file
19
Mage/src/mage/counters/common/HoofprintCounter.java
Normal 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;
|
||||
}
|
||||
}
|
||||
21
Mage/src/mage/game/permanent/token/KithkinToken.java
Normal file
21
Mage/src/mage/game/permanent/token/KithkinToken.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue