mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 15:32:08 -08:00
[FIN] Implement Rinoa Heartilly
This commit is contained in:
parent
a863837e20
commit
47720cf8be
3 changed files with 88 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class AngeloToken extends TokenImpl {
|
||||
|
||||
public AngeloToken() {
|
||||
super("Angelo", "Angelo, a legendary 1/1 green and white Dog creature token");
|
||||
supertype.add(SuperType.LEGENDARY);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.DOG);
|
||||
|
||||
color.setGreen(true);
|
||||
color.setWhite(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private AngeloToken(final AngeloToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public AngeloToken copy() {
|
||||
return new AngeloToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue