mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 11:02:00 -08:00
Fixed Deceiver of Form duration and tooltip. Fixed Goblin Freerunner tooltip.
This commit is contained in:
parent
90322d2846
commit
be05be8733
2 changed files with 199 additions and 194 deletions
|
|
@ -86,7 +86,7 @@ class DeceiverOfFormEffect extends OneShotEffect {
|
|||
|
||||
public DeceiverOfFormEffect() {
|
||||
super(Outcome.Copy);
|
||||
this.staticText = "At the beginning of combat on your turn, reveal the top card of your library. If a creature card is revealed this way, you may have creatures you control other than Deceiver of Form becomes copies of that card until end of turn. You may put that card on the bottom of your library";
|
||||
this.staticText = "reveal the top card of your library. If a creature card is revealed this way, you may have creatures you control other than Deceiver of Form becomes copies of that card until end of turn. You may put that card on the bottom of your library";
|
||||
}
|
||||
|
||||
public DeceiverOfFormEffect(final DeceiverOfFormEffect effect) {
|
||||
|
|
@ -134,7 +134,7 @@ class DeceiverOfFormCopyEffect extends ContinuousEffectImpl {
|
|||
private final Card card;
|
||||
|
||||
public DeceiverOfFormCopyEffect(Card card) {
|
||||
super(Duration.WhileOnBattlefield, Layer.CopyEffects_1, SubLayer.NA, Outcome.BecomeCreature);
|
||||
super(Duration.EndOfTurn, Layer.CopyEffects_1, SubLayer.NA, Outcome.BecomeCreature);
|
||||
this.card = card;
|
||||
staticText = "becomes copies of that card until end of turn";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
package mage.sets.oathofthegatewatch;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.abilities.effects.common.combat.CantBlockTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
|
|
@ -47,8 +48,12 @@ public class SparkmagesGambit extends CardImpl {
|
|||
this.expansionSetCode = "OGW";
|
||||
|
||||
// Sparkmage's Gambit deals 1 damage to each of up to two target creatures. Those creatures can't block this turn.
|
||||
this.getSpellAbility().addEffect(new DamageTargetEffect(1));
|
||||
this.getSpellAbility().addEffect(new CantBlockTargetEffect(Duration.EndOfTurn));
|
||||
Effect effect = new DamageTargetEffect(1);
|
||||
effect.setText("{this} deals 1 damage to each of up to two target creatures. ");
|
||||
this.getSpellAbility().addEffect(effect);
|
||||
effect = new CantBlockTargetEffect(Duration.EndOfTurn);
|
||||
effect.setText("Those creatures can't block this turn");
|
||||
this.getSpellAbility().addEffect(effect);
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 2));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue