1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 01:08:59 -09:00

[DIS] renamed Palliation Accord counters (confirmed by magic lead editor)

This commit is contained in:
Evan Kranzler 2022-04-08 08:45:26 -04:00
parent 100250f8b3
commit 8b4494fde1
2 changed files with 10 additions and 7 deletions
Mage.Sets/src/mage/cards/p
Mage/src/main/java/mage/counters

View file

@ -1,7 +1,5 @@
package mage.cards.p;
import java.util.UUID;
import mage.abilities.common.BecomesTappedTriggeredAbility;
import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.RemoveCountersSourceCost;
@ -11,12 +9,12 @@ import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.Zone;
import mage.counters.CounterType;
import mage.filter.StaticFilters;
import java.util.UUID;
/**
*
* @author fireshoes
*/
public final class PalliationAccord extends CardImpl {
@ -25,12 +23,16 @@ public final class PalliationAccord extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{W}{U}");
// Whenever a creature an opponent controls becomes tapped, put a shield counter on Palliation Accord.
this.addAbility(new BecomesTappedTriggeredAbility(new AddCountersSourceEffect(CounterType.SHIELD.createInstance()), false, StaticFilters.FILTER_OPPONENTS_PERMANENT_A_CREATURE));
this.addAbility(new BecomesTappedTriggeredAbility(
new AddCountersSourceEffect(CounterType.PALLIATION.createInstance()),
false, StaticFilters.FILTER_OPPONENTS_PERMANENT_A_CREATURE
));
// Remove a shield counter from Palliation Accord: Prevent the next 1 damage that would be dealt to you this turn.
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD,
this.addAbility(new SimpleActivatedAbility(
new PreventDamageToControllerEffect(Duration.EndOfTurn, 1),
new RemoveCountersSourceCost(CounterType.SHIELD.createInstance())));
new RemoveCountersSourceCost(CounterType.PALLIATION.createInstance())
));
}
private PalliationAccord(final PalliationAccord card) {

View file

@ -132,6 +132,7 @@ public enum CounterType {
P2P2(new BoostCounter(2, 2).name),
PAGE("page"),
PAIN("pain"),
PALLIATION("palliation"),
PARALYZATION("paralyzation"),
PETAL("petal"),
PETRIFICATION("petrification"),