mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[ANA] - implemented Treetop Warden
This commit is contained in:
parent
e04705d914
commit
cf82c15aad
1 changed files with 32 additions and 0 deletions
32
Mage.Sets/src/mage/cards/t/TreetopWarden.java
Normal file
32
Mage.Sets/src/mage/cards/t/TreetopWarden.java
Normal file
|
@ -0,0 +1,32 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author JayDi85
|
||||
*/
|
||||
public final class TreetopWarden extends CardImpl {
|
||||
|
||||
public TreetopWarden(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}");
|
||||
this.subtype.add(SubType.ELF, SubType.WARRIOR);
|
||||
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
}
|
||||
|
||||
public TreetopWarden(final TreetopWarden card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TreetopWarden copy() {
|
||||
return new TreetopWarden(this);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue