mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
* Spellheart Chimera - Fixed that power / toughness calulation was only made while on battlefield instead correctly in every zone.
This commit is contained in:
parent
37627c1cbd
commit
f53776725a
1 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ public class SpellheartChimera extends CardImpl<SpellheartChimera> {
|
|||
// Trample
|
||||
this.addAbility(TrampleAbility.getInstance());
|
||||
// Spellheart Chimera's power is equal to the number of instant and sorcery cards in your graveyard.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellheartChimeraEffect()));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new SpellheartChimeraEffect()));
|
||||
}
|
||||
|
||||
public SpellheartChimera(final SpellheartChimera card) {
|
||||
|
@ -87,7 +87,7 @@ class SpellheartChimeraEffect extends ContinuousEffectImpl<SpellheartChimeraEffe
|
|||
private static final FilterCard filter = new FilterInstantOrSorceryCard();
|
||||
|
||||
public SpellheartChimeraEffect() {
|
||||
super(Duration.WhileOnBattlefield, Layer.PTChangingEffects_7, SubLayer.SetPT_7b, Outcome.BoostCreature);
|
||||
super(Duration.EndOfGame, Layer.PTChangingEffects_7, SubLayer.SetPT_7b, Outcome.BoostCreature);
|
||||
staticText = "{this}'s power is equal to the number of instant and sorcery cards in your graveyard";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue