mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
[J22] Implement Lita, Mechanical Engineer
This commit is contained in:
parent
3c24a3d221
commit
d3bddc813a
3 changed files with 108 additions and 0 deletions
|
|
@ -0,0 +1,36 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.CrewAbility;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ZeppelinToken extends TokenImpl {
|
||||
|
||||
public ZeppelinToken() {
|
||||
super("Zeppelin", "5/5 colorless Vehicle artifact token named Zeppelin with flying and crew 3");
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
subtype.add(SubType.VEHICLE);
|
||||
power = new MageInt(5);
|
||||
toughness = new MageInt(5);
|
||||
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
this.addAbility(new CrewAbility(3));
|
||||
|
||||
availableImageSetCodes = Arrays.asList("J22");
|
||||
}
|
||||
|
||||
public ZeppelinToken(final ZeppelinToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public ZeppelinToken copy() {
|
||||
return new ZeppelinToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue