Removed double targets of bloodrush ability and minor formating changes.

This commit is contained in:
LevelX2 2013-02-24 19:17:26 +01:00
parent dbbf7062c8
commit 39ac265d11
5 changed files with 3 additions and 9 deletions

View file

@ -61,7 +61,6 @@ public class GhorClanRampager extends CardImpl<GhorClanRampager> {
// Bloodrush - {R}{G}, Discard Ghor-Clan Rampager: Target attacking creature gets +4/+4 and gains trample until end of turn.
Ability ability = new BloodrushAbility("{R}{G}",new BoostTargetEffect(4,4, Constants.Duration.EndOfTurn));
ability.addEffect(new GainAbilityTargetEffect(TrampleAbility.getInstance(), Constants.Duration.EndOfTurn));
ability.addTarget(new TargetAttackingCreature());
this.addAbility(ability);
}

View file

@ -68,8 +68,7 @@ public class Rubblehulk extends CardImpl<Rubblehulk> {
this.addAbility(new SimpleStaticAbility(Constants.Zone.ALL, new SetPowerToughnessSourceEffect(controlledLands, Constants.Duration.WhileOnBattlefield)));
// Bloodrush - 1{R}{G}, Discard Rubblehulk: Target attacking creature gets +X/+X until end of turn, where X is the number of lands you control.
Ability ability = new BloodrushAbility("{1}{R}{G}", new BoostTargetEffect(controlledLands,controlledLands, Duration.EndOfTurn));
this.addAbility(ability);
this.addAbility(new BloodrushAbility("{1}{R}{G}", new BoostTargetEffect(controlledLands,controlledLands, Duration.EndOfTurn)));
}
public Rubblehulk(final Rubblehulk card) {

View file

@ -55,9 +55,7 @@ public class ScabClanCharger extends CardImpl<ScabClanCharger> {
this.toughness = new MageInt(4);
// Bloodrush - {1}{G}, Discard Scab-Clan Charger: Target attacking creature gets +2/+4 until end of turn.
Ability ability = new BloodrushAbility("{1}{G}", new BoostTargetEffect(2, 4, Duration.EndOfTurn));
ability.addTarget(new TargetAttackingCreature());
this.addAbility(ability);
this.addAbility(new BloodrushAbility("{1}{G}", new BoostTargetEffect(2, 4, Duration.EndOfTurn)));
}
public ScabClanCharger(final ScabClanCharger card) {

View file

@ -61,7 +61,6 @@ public class WreckingOgre extends CardImpl<WreckingOgre> {
// Bloodrush - {3}{R}{R}, Discard Wrecking Ogre: Target attacking creature gets +3/+3 and gains double strike until end of turn.
Ability ability = new BloodrushAbility("{3}{R}{R}", new BoostTargetEffect(3, 3, Duration.EndOfTurn));
ability.addEffect(new GainAbilityTargetEffect(DoubleStrikeAbility.getInstance(), Duration.EndOfTurn));
ability.addTarget(new TargetAttackingCreature());
this.addAbility(ability);
}

View file

@ -54,8 +54,7 @@ public class ZhurTaaSwine extends CardImpl<ZhurTaaSwine> {
this.toughness = new MageInt(4);
// Bloodrush - 1{R}{G}, Discard Zhur-Taa Swine: Target attacking creature gets +5/+4 until end of turn.
Ability ability = new BloodrushAbility("{1}{R}{G}", new BoostTargetEffect(5,4, Duration.EndOfTurn));
this.addAbility(ability);
this.addAbility(new BloodrushAbility("{1}{R}{G}", new BoostTargetEffect(5,4, Duration.EndOfTurn)));
}