mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Implement Blade Instructor
This commit is contained in:
parent
19af00f46a
commit
ef82f571d9
1 changed files with 39 additions and 0 deletions
39
Mage.Sets/src/mage/cards/b/BladeInstructor
Normal file
39
Mage.Sets/src/mage/cards/b/BladeInstructor
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
package mage.cards.b;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.keyword.MentorAbility;
|
||||||
|
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 BladeInstructor extends CardImpl {
|
||||||
|
|
||||||
|
public BladeInstructor(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.HUMAN);
|
||||||
|
this.subtype.add(SubType.SOLDIER);
|
||||||
|
this.power = new MageInt(3);
|
||||||
|
this.toughness = new MageInt(1);
|
||||||
|
|
||||||
|
// Mentor
|
||||||
|
this.addAbility(new MentorAbility());
|
||||||
|
}
|
||||||
|
|
||||||
|
public BladeInstructor(final BladeInstructor card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BladeInstructor copy() {
|
||||||
|
return new BladeInstructor(this);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue