mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
parent
43581cafa3
commit
126d78f349
1 changed files with 2 additions and 1 deletions
|
@ -32,6 +32,7 @@ import mage.MageInt;
|
|||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.dynamicvalue.common.ManacostVariableValue;
|
||||
import mage.abilities.effects.PreventionEffectData;
|
||||
import mage.abilities.effects.common.PreventDamageToControllerEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
|
@ -81,7 +82,7 @@ public class VengefulArchon extends CardImpl {
|
|||
class VengefulArchonEffect extends PreventDamageToControllerEffect {
|
||||
|
||||
public VengefulArchonEffect() {
|
||||
super(Duration.EndOfTurn, 0, false, true, new ManacostVariableValue());
|
||||
super(Duration.EndOfTurn, false, true, new ManacostVariableValue());
|
||||
staticText = "Prevent the next X damage that would be dealt to you this turn. If damage is prevented this way, {this} deals that much damage to target player";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue