Merge origin/master

This commit is contained in:
LevelX2 2017-01-07 23:54:00 +01:00
commit 13659e064c
3 changed files with 70 additions and 65 deletions

View file

@ -145,7 +145,7 @@ class TapXTargetCost extends VariableCostImpl {
}
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";
}

View file

@ -28,6 +28,7 @@
package mage.cards.p;
import java.util.UUID;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.continuous.BoostTargetEffect;
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
import mage.abilities.keyword.FirstStrikeAbility;
@ -47,8 +48,12 @@ public class PreciseStrike extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{R}");
// Target creature gets +1/+0 and gains first strike until end of turn.
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 0, Duration.EndOfTurn));
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn));
Effect effect = new BoostTargetEffect(1, 0, 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());
}

View file

@ -52,7 +52,7 @@ import mage.target.common.TargetCreaturePermanent;
*/
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 {
filter.add(new CounterAnyPredicate());