mirror of
https://github.com/correl/mage.git
synced 2024-11-25 19:19:55 +00:00
[AER] Fix some more card text.
This commit is contained in:
parent
491ab5fbb0
commit
5b3c273da7
3 changed files with 70 additions and 65 deletions
|
@ -145,7 +145,7 @@ class TapXTargetCost extends VariableCostImpl {
|
||||||
}
|
}
|
||||||
|
|
||||||
public TapXTargetCost() {
|
public TapXTargetCost() {
|
||||||
super("controlled untapped artifacts you like to tap");
|
super("controlled untapped artifacts you would like to tap");
|
||||||
this.text = "Tap X untapped artifacts you control";
|
this.text = "Tap X untapped artifacts you control";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
package mage.cards.p;
|
package mage.cards.p;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
import mage.abilities.effects.Effect;
|
||||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||||
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
||||||
import mage.abilities.keyword.FirstStrikeAbility;
|
import mage.abilities.keyword.FirstStrikeAbility;
|
||||||
|
@ -47,8 +48,12 @@ public class PreciseStrike extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{R}");
|
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{R}");
|
||||||
|
|
||||||
// Target creature gets +1/+0 and gains first strike until end of turn.
|
// Target creature gets +1/+0 and gains first strike until end of turn.
|
||||||
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 0, Duration.EndOfTurn));
|
Effect effect = new BoostTargetEffect(1, 0, Duration.EndOfTurn);
|
||||||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn));
|
effect.setText("Target creature gets +1/+0");
|
||||||
|
this.getSpellAbility().addEffect(effect);
|
||||||
|
effect = new GainAbilityTargetEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn);
|
||||||
|
effect.setText("and gains first strike until end of turn");
|
||||||
|
this.getSpellAbility().addEffect(effect);
|
||||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ import mage.target.common.TargetCreaturePermanent;
|
||||||
*/
|
*/
|
||||||
public class RishkarPeemaRenegade extends CardImpl {
|
public class RishkarPeemaRenegade extends CardImpl {
|
||||||
|
|
||||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creature with a counter on it");
|
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Each creature with a counter on it");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(new CounterAnyPredicate());
|
filter.add(new CounterAnyPredicate());
|
||||||
|
|
Loading…
Reference in a new issue