mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* 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:
parent
d28fd6646b
commit
ac9a3f4a3d
3 changed files with 8 additions and 10 deletions
|
@ -1,7 +1,5 @@
|
|||
|
||||
package mage.cards.b;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.dynamicvalue.common.StaticValue;
|
||||
|
@ -19,14 +17,15 @@ import mage.game.events.GameEvent.EventType;
|
|||
import mage.game.stack.StackAbility;
|
||||
import mage.target.targetpointer.FixedTarget;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Loki
|
||||
*/
|
||||
public final class BurningTreeShaman extends CardImpl {
|
||||
|
||||
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.power = new MageInt(3);
|
||||
|
@ -49,7 +48,7 @@ public final class BurningTreeShaman extends CardImpl {
|
|||
class BurningTreeShamanTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
||||
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) {
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
|
||||
package mage.cards.h;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.dynamicvalue.common.StaticValue;
|
||||
|
@ -20,8 +18,9 @@ import mage.game.events.GameEvent.EventType;
|
|||
import mage.game.stack.StackAbility;
|
||||
import mage.target.targetpointer.FixedTarget;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class HarshMentor extends CardImpl {
|
||||
|
@ -51,7 +50,7 @@ public final class HarshMentor extends CardImpl {
|
|||
class HarshMentorTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
||||
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) {
|
||||
|
|
|
@ -69,7 +69,7 @@ public final class ImmolationShaman extends CardImpl {
|
|||
class ImmolationShamanTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
||||
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) {
|
||||
|
|
Loading…
Reference in a new issue