forked from External/mage
made permanent tokens from framework compliant with new abstract superclass
This commit is contained in:
parent
2d922cb6af
commit
03eb170a04
341 changed files with 2690 additions and 40 deletions
|
|
@ -41,6 +41,7 @@ public class PromiseOfPowerDemonToken extends Token {
|
|||
public PromiseOfPowerDemonToken() {
|
||||
this(1);
|
||||
}
|
||||
|
||||
public PromiseOfPowerDemonToken(int xValue) {
|
||||
super("Demon", "X/X black Demon creature token with flying");
|
||||
setOriginalExpansionSetCode("C14");
|
||||
|
|
@ -53,4 +54,12 @@ public class PromiseOfPowerDemonToken extends Token {
|
|||
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public PromiseOfPowerDemonToken(final PromiseOfPowerDemonToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public PromiseOfPowerDemonToken copy() {
|
||||
return new PromiseOfPowerDemonToken(this);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue