mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -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);
|
||||
}
|
||||
}
|
||||
|
|
@ -2897,6 +2897,7 @@
|
|||
|Generate|TOK:TLA|Clue|3||ClueArtifactToken|
|
||||
|Generate|TOK:TLA|Clue|4||ClueArtifactToken|
|
||||
|Generate|TOK:TLA|Clue|5||ClueArtifactToken|
|
||||
|Generate|TOK:TLA|Dragon|||DragonFirebendingToken|
|
||||
|Generate|TOK:TLA|Food|1||FoodToken|
|
||||
|Generate|TOK:TLA|Food|2||FoodToken|
|
||||
|Generate|TOK:TLA|Food|3||FoodToken|
|
||||
|
|
@ -2989,4 +2990,4 @@
|
|||
|Generate|TOK:PL24|Dragon|||DragonToken|
|
||||
|
||||
# PL25
|
||||
|Generate|TOK:PL25|Snake|||SnakeToken|
|
||||
|Generate|TOK:PL25|Snake|||SnakeToken|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue