mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
Revised Thermal Blast
This commit is contained in:
parent
5491a7c033
commit
307db242fd
1 changed files with 3 additions and 3 deletions
|
@ -51,10 +51,10 @@ public class ThermalBlast extends CardImpl<ThermalBlast> {
|
|||
|
||||
// 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.
|
||||
Effect effect = new ConditionalOneShotEffect(new DamageTargetEffect(3),
|
||||
new DamageTargetEffect(5),
|
||||
Effect effect = new ConditionalOneShotEffect(new DamageTargetEffect(5),
|
||||
new DamageTargetEffect(3),
|
||||
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().addEffect(effect);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue