mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
manticore elemental
This commit is contained in:
parent
5bb1311a6e
commit
9fb04dc33c
1 changed files with 32 additions and 1 deletions
|
@ -1,4 +1,35 @@
|
||||||
package mage.cards.m;
|
package mage.cards.m;
|
||||||
|
|
||||||
public class ManticoreElemental {
|
import mage.MageInt;
|
||||||
|
import mage.abilities.common.AttacksEachCombatStaticAbility;
|
||||||
|
import mage.abilities.keyword.AfflictAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
public class ManticoreElemental extends CardImpl {
|
||||||
|
|
||||||
|
public ManticoreElemental(UUID ownerId, CardSetInfo cardSetInfo) {
|
||||||
|
super(ownerId, cardSetInfo, new CardType[]{CardType.CREATURE}, "{3}{R}{R}");
|
||||||
|
subtype.add("Zombie");
|
||||||
|
subtype.add("Manticore");
|
||||||
|
power = new MageInt(5);
|
||||||
|
toughness = new MageInt(4);
|
||||||
|
|
||||||
|
// Afflict 3
|
||||||
|
addAbility(new AfflictAbility(3));
|
||||||
|
|
||||||
|
// Manticore Elemental attacks each combat if able
|
||||||
|
addAbility(new AttacksEachCombatStaticAbility());
|
||||||
|
}
|
||||||
|
|
||||||
|
public ManticoreElemental(final ManticoreElemental manticoreElemental) {
|
||||||
|
super(manticoreElemental);
|
||||||
|
}
|
||||||
|
|
||||||
|
public ManticoreElemental copy() {
|
||||||
|
return new ManticoreElemental(this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue