mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
Refactor - Changed visibility of HellionToken classes used in separate Card classes in prep for card reorg
This commit is contained in:
parent
ecde8dd0b3
commit
0d3b18c70d
2 changed files with 20 additions and 20 deletions
|
|
@ -81,9 +81,8 @@ public class HellionCrucible extends CardImpl {
|
||||||
public HellionCrucible copy() {
|
public HellionCrucible copy() {
|
||||||
return new HellionCrucible(this);
|
return new HellionCrucible(this);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
class HellionToken extends Token {
|
class HellionToken extends Token {
|
||||||
public HellionToken() {
|
public HellionToken() {
|
||||||
super("Hellion", "4/4 red Hellion creature token with haste");
|
super("Hellion", "4/4 red Hellion creature token with haste");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
|
|
@ -93,4 +92,5 @@ class HellionToken extends Token {
|
||||||
toughness = new MageInt(4);
|
toughness = new MageInt(4);
|
||||||
addAbility(HasteAbility.getInstance());
|
addAbility(HasteAbility.getInstance());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -92,9 +92,8 @@ class HellionEruptionEffect extends OneShotEffect {
|
||||||
(new HellionToken()).putOntoBattlefield(permanents.size(), game, source.getSourceId(), source.getControllerId());
|
(new HellionToken()).putOntoBattlefield(permanents.size(), game, source.getSourceId(), source.getControllerId());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
class HellionToken extends Token {
|
class HellionToken extends Token {
|
||||||
|
|
||||||
HellionToken() {
|
HellionToken() {
|
||||||
super("Hellion", "4/4 red Hellion creature token");
|
super("Hellion", "4/4 red Hellion creature token");
|
||||||
|
|
@ -104,4 +103,5 @@ class HellionToken extends Token {
|
||||||
this.power = new MageInt(4);
|
this.power = new MageInt(4);
|
||||||
this.toughness = new MageInt(4);
|
this.toughness = new MageInt(4);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue