mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
[LTR] Implement Mordor Trebuchet (#10496)
Along with its unique token Ballistic Boulder.
This commit is contained in:
parent
6e2b35e6a3
commit
06cce0ce22
3 changed files with 137 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class BallisticBoulder extends TokenImpl {
|
||||
|
||||
public BallisticBoulder() {
|
||||
super("Ballistic Boulder", "2/1 colorless Construct artifact creature token with flying named Ballistic Boulder");
|
||||
cardType.add(CardType.CREATURE);
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
subtype.add(SubType.CONSTRUCT);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public BallisticBoulder(final BallisticBoulder token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public BallisticBoulder copy() {
|
||||
return new BallisticBoulder(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue