mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
- Text fixes for Opal Acrolith.
This commit is contained in:
parent
d3bfeccb01
commit
9d8d623341
1 changed files with 7 additions and 7 deletions
|
@ -37,7 +37,7 @@ public final class OpalAcrolith extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{W}");
|
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{W}");
|
||||||
|
|
||||||
// Whenever an opponent casts a creature spell, if Opal Acrolith is an enchantment, Opal Acrolith becomes a 2/4 Soldier creature.
|
// Whenever an opponent casts a creature spell, if Opal Acrolith is an enchantment, Opal Acrolith becomes a 2/4 Soldier creature.
|
||||||
TriggeredAbility ability = new SpellCastOpponentTriggeredAbility(new BecomesCreatureSourceEffect(new OpalAcrolithSoldier(), "", Duration.WhileOnBattlefield, true, false),
|
TriggeredAbility ability = new SpellCastOpponentTriggeredAbility(new BecomesCreatureSourceEffect(new OpalAcrolithToken(), "", Duration.WhileOnBattlefield, true, false),
|
||||||
filter, false);
|
filter, false);
|
||||||
this.addAbility(new ConditionalInterveningIfTriggeredAbility(ability, new SourceMatchesFilterCondition(StaticFilters.FILTER_ENCHANTMENT_PERMANENT),
|
this.addAbility(new ConditionalInterveningIfTriggeredAbility(ability, new SourceMatchesFilterCondition(StaticFilters.FILTER_ENCHANTMENT_PERMANENT),
|
||||||
"Whenever an opponent casts a creature spell, if Opal Acrolith is an enchantment, Opal Acrolith becomes a 2/4 Soldier creature."));
|
"Whenever an opponent casts a creature spell, if Opal Acrolith is an enchantment, Opal Acrolith becomes a 2/4 Soldier creature."));
|
||||||
|
@ -57,21 +57,21 @@ public final class OpalAcrolith extends CardImpl {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class OpalAcrolithSoldier extends TokenImpl {
|
class OpalAcrolithToken extends TokenImpl {
|
||||||
|
|
||||||
public OpalAcrolithSoldier() {
|
public OpalAcrolithToken() {
|
||||||
super("Soldier", "2/4 Ape creature");
|
super("Soldier", "2/4 Soldier creature");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
subtype.add(SubType.SOLDIER);
|
subtype.add(SubType.SOLDIER);
|
||||||
power = new MageInt(2);
|
power = new MageInt(2);
|
||||||
toughness = new MageInt(4);
|
toughness = new MageInt(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
public OpalAcrolithSoldier(final OpalAcrolithSoldier token) {
|
public OpalAcrolithToken(final OpalAcrolithToken token) {
|
||||||
super(token);
|
super(token);
|
||||||
}
|
}
|
||||||
|
|
||||||
public OpalAcrolithSoldier copy() {
|
public OpalAcrolithToken copy() {
|
||||||
return new OpalAcrolithSoldier(this);
|
return new OpalAcrolithToken(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue