mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +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.
|
// 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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue