mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fix poor naming of Embercleave's cost-reduction effect
This commit is contained in:
parent
fc3910477c
commit
5c82085937
1 changed files with 6 additions and 6 deletions
|
@ -39,7 +39,7 @@ public final class Embercleave extends CardImpl {
|
|||
this.addAbility(FlashAbility.getInstance());
|
||||
|
||||
// This spell costs {1} less to cast for each attacking creature you control.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new AncientStoneIdolCostReductionEffect()));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new EmbercleaveCostReductionEffect()));
|
||||
|
||||
// When Embercleave enters the battlefield, attach it to target creature you control.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new AttachEffect(
|
||||
|
@ -72,7 +72,7 @@ public final class Embercleave extends CardImpl {
|
|||
}
|
||||
}
|
||||
|
||||
class AncientStoneIdolCostReductionEffect extends CostModificationEffectImpl {
|
||||
class EmbercleaveCostReductionEffect extends CostModificationEffectImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterControlledCreaturePermanent();
|
||||
|
||||
|
@ -80,12 +80,12 @@ class AncientStoneIdolCostReductionEffect extends CostModificationEffectImpl {
|
|||
filter.add(AttackingPredicate.instance);
|
||||
}
|
||||
|
||||
AncientStoneIdolCostReductionEffect() {
|
||||
EmbercleaveCostReductionEffect() {
|
||||
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.REDUCE_COST);
|
||||
staticText = "This spell costs {1} less to cast for each attacking creature you control";
|
||||
}
|
||||
|
||||
private AncientStoneIdolCostReductionEffect(AncientStoneIdolCostReductionEffect effect) {
|
||||
private EmbercleaveCostReductionEffect(EmbercleaveCostReductionEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
|
@ -105,7 +105,7 @@ class AncientStoneIdolCostReductionEffect extends CostModificationEffectImpl {
|
|||
}
|
||||
|
||||
@Override
|
||||
public AncientStoneIdolCostReductionEffect copy() {
|
||||
return new AncientStoneIdolCostReductionEffect(this);
|
||||
public EmbercleaveCostReductionEffect copy() {
|
||||
return new EmbercleaveCostReductionEffect(this);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue