mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
[ZNR] Implemented Attended Healer
This commit is contained in:
parent
0c9b7f76eb
commit
9cf96bd391
3 changed files with 140 additions and 0 deletions
28
Mage/src/main/java/mage/game/permanent/token/CatToken3.java
Normal file
28
Mage/src/main/java/mage/game/permanent/token/CatToken3.java
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CatToken3 extends TokenImpl {
|
||||
|
||||
public CatToken3() {
|
||||
super("Cat", "1/1 white Cat creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.CAT);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private CatToken3(final CatToken3 token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public CatToken3 copy() {
|
||||
return new CatToken3(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue