mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[TLA] Implement The Legend of Roku / Avatar Roku
This commit is contained in:
parent
cc330ac3b8
commit
7d482d7a44
6 changed files with 147 additions and 6 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FirebendingAbility;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DragonFirebendingToken extends TokenImpl {
|
||||
|
||||
public DragonFirebendingToken() {
|
||||
super("Dragon Token", "4/4 red Dragon creature token with flying and firebending 4");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.DRAGON);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
addAbility(new FirebendingAbility(4));
|
||||
}
|
||||
|
||||
private DragonFirebendingToken(final DragonFirebendingToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public DragonFirebendingToken copy() {
|
||||
return new DragonFirebendingToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue