[LTR] Implement Mordor Trebuchet (#10496)

Along with its unique token Ballistic Boulder.
This commit is contained in:
Susucre 2023-06-30 04:02:55 +02:00 committed by GitHub
parent 6e2b35e6a3
commit 06cce0ce22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 137 additions and 0 deletions

View file

@ -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);
}
}