Revised Thermal Blast

This commit is contained in:
Cowboy 2014-01-02 16:22:56 -05:00
parent 5491a7c033
commit 307db242fd

View file

@ -51,10 +51,10 @@ public class ThermalBlast extends CardImpl<ThermalBlast> {
// Thermal Blast deals 3 damage to target creature. // Thermal Blast deals 3 damage to target creature.
// Threshold - Thermal Blast deals 5 damage to that creature instead if seven or more cards are in your graveyard. // Threshold - Thermal Blast deals 5 damage to that creature instead if seven or more cards are in your graveyard.
Effect effect = new ConditionalOneShotEffect(new DamageTargetEffect(3), Effect effect = new ConditionalOneShotEffect(new DamageTargetEffect(5),
new DamageTargetEffect(5), new DamageTargetEffect(3),
new CardsInControllerGraveCondition(7), new CardsInControllerGraveCondition(7),
"{this} deals 3 damage to target creature.<br/><br/><i>Threshold<i/> - {this} deals 5 damage to that creature instead if seven or more cards are in your graveyard."); "{this} deals 3 damage to target creature.<br/><br/><i>Threshold</i> - {this} deals 5 damage to that creature instead if seven or more cards are in your graveyard.");
this.getSpellAbility().addTarget(new TargetCreaturePermanent()); this.getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellAbility().addEffect(effect); this.getSpellAbility().addEffect(effect);
} }