* Burning-Tree Shaman - fixed that damage was unpreventable;

* Harsh Mentor - fixed that damage was unpreventable;
* Immolation Shaman - fixed that damage was unpreventable;
This commit is contained in:
Oleg Agafonov 2019-01-11 09:13:57 +04:00
parent d28fd6646b
commit ac9a3f4a3d
3 changed files with 8 additions and 10 deletions

View file

@ -1,7 +1,5 @@
package mage.cards.b; package mage.cards.b;
import java.util.UUID;
import mage.MageInt; import mage.MageInt;
import mage.abilities.TriggeredAbilityImpl; import mage.abilities.TriggeredAbilityImpl;
import mage.abilities.dynamicvalue.common.StaticValue; import mage.abilities.dynamicvalue.common.StaticValue;
@ -19,14 +17,15 @@ import mage.game.events.GameEvent.EventType;
import mage.game.stack.StackAbility; import mage.game.stack.StackAbility;
import mage.target.targetpointer.FixedTarget; import mage.target.targetpointer.FixedTarget;
import java.util.UUID;
/** /**
*
* @author Loki * @author Loki
*/ */
public final class BurningTreeShaman extends CardImpl { public final class BurningTreeShaman extends CardImpl {
public BurningTreeShaman(UUID ownerId, CardSetInfo setInfo) { public BurningTreeShaman(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{R}{G}"); super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{R}{G}");
this.subtype.add(SubType.CENTAUR, SubType.SHAMAN); this.subtype.add(SubType.CENTAUR, SubType.SHAMAN);
this.power = new MageInt(3); this.power = new MageInt(3);
@ -49,7 +48,7 @@ public final class BurningTreeShaman extends CardImpl {
class BurningTreeShamanTriggeredAbility extends TriggeredAbilityImpl { class BurningTreeShamanTriggeredAbility extends TriggeredAbilityImpl {
BurningTreeShamanTriggeredAbility() { BurningTreeShamanTriggeredAbility() {
super(Zone.BATTLEFIELD, new DamageTargetEffect(new StaticValue(1), false, "that player", true)); super(Zone.BATTLEFIELD, new DamageTargetEffect(new StaticValue(1), true, "that player", true));
} }
BurningTreeShamanTriggeredAbility(final BurningTreeShamanTriggeredAbility ability) { BurningTreeShamanTriggeredAbility(final BurningTreeShamanTriggeredAbility ability) {

View file

@ -1,7 +1,5 @@
package mage.cards.h; package mage.cards.h;
import java.util.UUID;
import mage.MageInt; import mage.MageInt;
import mage.abilities.TriggeredAbilityImpl; import mage.abilities.TriggeredAbilityImpl;
import mage.abilities.dynamicvalue.common.StaticValue; import mage.abilities.dynamicvalue.common.StaticValue;
@ -20,8 +18,9 @@ import mage.game.events.GameEvent.EventType;
import mage.game.stack.StackAbility; import mage.game.stack.StackAbility;
import mage.target.targetpointer.FixedTarget; import mage.target.targetpointer.FixedTarget;
import java.util.UUID;
/** /**
*
* @author spjspj * @author spjspj
*/ */
public final class HarshMentor extends CardImpl { public final class HarshMentor extends CardImpl {
@ -51,7 +50,7 @@ public final class HarshMentor extends CardImpl {
class HarshMentorTriggeredAbility extends TriggeredAbilityImpl { class HarshMentorTriggeredAbility extends TriggeredAbilityImpl {
HarshMentorTriggeredAbility() { HarshMentorTriggeredAbility() {
super(Zone.BATTLEFIELD, new DamageTargetEffect(new StaticValue(2), false, "that player", true)); super(Zone.BATTLEFIELD, new DamageTargetEffect(new StaticValue(2), true, "that player", true));
} }
HarshMentorTriggeredAbility(final HarshMentorTriggeredAbility ability) { HarshMentorTriggeredAbility(final HarshMentorTriggeredAbility ability) {

View file

@ -69,7 +69,7 @@ public final class ImmolationShaman extends CardImpl {
class ImmolationShamanTriggeredAbility extends TriggeredAbilityImpl { class ImmolationShamanTriggeredAbility extends TriggeredAbilityImpl {
ImmolationShamanTriggeredAbility() { ImmolationShamanTriggeredAbility() {
super(Zone.BATTLEFIELD, new DamageTargetEffect(new StaticValue(1), false, "that player", true)); super(Zone.BATTLEFIELD, new DamageTargetEffect(new StaticValue(1), true, "that player", true));
} }
private ImmolationShamanTriggeredAbility(final ImmolationShamanTriggeredAbility ability) { private ImmolationShamanTriggeredAbility(final ImmolationShamanTriggeredAbility ability) {