forked from External/mage
Implement Nyxborn Courser
This commit is contained in:
parent
b538baef6f
commit
073ee1419b
1 changed files with 35 additions and 0 deletions
35
Mage.Sets/src/mage/cards/n/NyxbornCourser.java
Normal file
35
Mage.Sets/src/mage/cards/n/NyxbornCourser.java
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.n;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author jmharmon
|
||||
*/
|
||||
|
||||
public final class NyxbornCourser extends CardImpl {
|
||||
|
||||
public NyxbornCourser(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{1}{W}{W}");
|
||||
|
||||
this.subtype.add(SubType.CENTAUR);
|
||||
this.subtype.add(SubType.SCOUT);
|
||||
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(4);
|
||||
}
|
||||
|
||||
public NyxbornCourser(final NyxbornCourser card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NyxbornCourser copy() {
|
||||
return new NyxbornCourser(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue