[SPM] update wrong effect access levels

This commit is contained in:
jmlundeen 2025-09-05 13:25:47 -05:00
parent 721b9b90c9
commit 54975d8051
9 changed files with 9 additions and 8 deletions

View file

@ -51,7 +51,7 @@ public final class BlackCatCunningThief extends CardImpl {
} }
class BlackCatCunningThiefEffect extends OneShotEffect { class BlackCatCunningThiefEffect extends OneShotEffect {
public BlackCatCunningThiefEffect() { BlackCatCunningThiefEffect() {
super(Outcome.Benefit); super(Outcome.Benefit);
this.staticText = "look at the top nine cards of target opponent's library, exile two of them face down, then put the rest on the bottom of their library in a random order. You may play the exiled cards for as long as they remain exiled. Mana of any type can be spent to cast spells this way"; this.staticText = "look at the top nine cards of target opponent's library, exile two of them face down, then put the rest on the bottom of their library in a random order. You may play the exiled cards for as long as they remain exiled. Mana of any type can be spent to cast spells this way";
} }

View file

@ -73,7 +73,7 @@ public final class CarnageCrimsonChaos extends CardImpl {
class CarnageCrimsonChaosReturnEffect extends OneShotEffect { class CarnageCrimsonChaosReturnEffect extends OneShotEffect {
public CarnageCrimsonChaosReturnEffect() { CarnageCrimsonChaosReturnEffect() {
super(Outcome.PutCreatureInPlay); super(Outcome.PutCreatureInPlay);
this.staticText = "return target creature card with mana value 3 or less from your graveyard to the battlefield. It gains \"This creature attacks each combat if able\" and \"When this creature deals combat damage to a player, sacrifice it.\""; this.staticText = "return target creature card with mana value 3 or less from your graveyard to the battlefield. It gains \"This creature attacks each combat if able\" and \"When this creature deals combat damage to a player, sacrifice it.\"";
} }

View file

@ -49,7 +49,7 @@ public final class CheeringCrowd extends CardImpl {
} }
class CheeringCrowdDoIfPaidEffect extends DoIfCostPaid { class CheeringCrowdDoIfPaidEffect extends DoIfCostPaid {
public CheeringCrowdDoIfPaidEffect() { CheeringCrowdDoIfPaidEffect() {
super(new CheeringCrowdEffect(), new PutCountersSourceCost(CounterType.P1P1.createInstance()), super(new CheeringCrowdEffect(), new PutCountersSourceCost(CounterType.P1P1.createInstance()),
"Put a +1/+1 counter on Cheering Crowd and add {C} for each counter on it?", true); "Put a +1/+1 counter on Cheering Crowd and add {C} for each counter on it?", true);
staticText = "that player may put a +1/+1 counter on this creature. If they do, they add {C} for each counter on it"; staticText = "that player may put a +1/+1 counter on this creature. If they do, they add {C} for each counter on it";

View file

@ -70,7 +70,7 @@ public final class HydroManFluidFelon extends CardImpl {
} }
class HydroManFluidFelonEffect extends ContinuousEffectImpl { class HydroManFluidFelonEffect extends ContinuousEffectImpl {
public HydroManFluidFelonEffect() { HydroManFluidFelonEffect() {
super(Duration.UntilYourNextTurn, Outcome.Neutral); super(Duration.UntilYourNextTurn, Outcome.Neutral);
this.staticText = "Until your next turn, he becomes a land and gains \"{T}: Add {U}.\""; this.staticText = "Until your next turn, he becomes a land and gains \"{T}: Add {U}.\"";
this.addDependencyType(DependencyType.BecomeNonbasicLand); this.addDependencyType(DependencyType.BecomeNonbasicLand);

View file

@ -57,7 +57,7 @@ public final class MisterNegative extends CardImpl {
class MisterNegativeEffect extends OneShotEffect { class MisterNegativeEffect extends OneShotEffect {
public MisterNegativeEffect() { MisterNegativeEffect() {
super(Outcome.Neutral); super(Outcome.Neutral);
staticText = "When {this} enters, you may exchange your life total with target opponent. If you lose life this way, draw that many cards."; staticText = "When {this} enters, you may exchange your life total with target opponent. If you lose life this way, draw that many cards.";
} }

View file

@ -44,7 +44,7 @@ public final class ParkerLuck extends CardImpl {
class ParkerLuckEffect extends OneShotEffect { class ParkerLuckEffect extends OneShotEffect {
public ParkerLuckEffect() { ParkerLuckEffect() {
super(Outcome.Damage); super(Outcome.Damage);
staticText = "two target players each reveal the top card of their library. " + staticText = "two target players each reveal the top card of their library. " +
"They each lose life equal to the mana value of the card " + "They each lose life equal to the mana value of the card " +

View file

@ -62,7 +62,7 @@ public final class RhinosRampage extends CardImpl {
class RhinosRampageEffect extends OneShotEffect { class RhinosRampageEffect extends OneShotEffect {
public RhinosRampageEffect() { RhinosRampageEffect() {
super(Outcome.BoostCreature); super(Outcome.BoostCreature);
staticText = "When excess damage is dealt to the creature an opponent controls this way, destroy up to one target noncreature " + staticText = "When excess damage is dealt to the creature an opponent controls this way, destroy up to one target noncreature " +
"artifact with mana value 3 or less"; "artifact with mana value 3 or less";

View file

@ -51,7 +51,7 @@ public final class ShadowOfTheGoblin extends CardImpl {
class ShadowOfTheGoblinTriggeredAbility extends TriggeredAbilityImpl { class ShadowOfTheGoblinTriggeredAbility extends TriggeredAbilityImpl {
public ShadowOfTheGoblinTriggeredAbility(Effect effect) { ShadowOfTheGoblinTriggeredAbility(Effect effect) {
super(Zone.BATTLEFIELD, effect, false); super(Zone.BATTLEFIELD, effect, false);
setTriggerPhrase("Whenever you play a land or cast a spell from anywhere other than your hand, "); setTriggerPhrase("Whenever you play a land or cast a spell from anywhere other than your hand, ");
} }

View file

@ -256,6 +256,7 @@ public final class MarvelsSpiderMan extends ExpansionSet {
cards.add(new SetCardInfo("Stegron the Dinosaur Man", 95, Rarity.COMMON, mage.cards.s.StegronTheDinosaurMan.class)); cards.add(new SetCardInfo("Stegron the Dinosaur Man", 95, Rarity.COMMON, mage.cards.s.StegronTheDinosaurMan.class));
cards.add(new SetCardInfo("Suburban Sanctuary", 185, Rarity.COMMON, mage.cards.s.SuburbanSanctuary.class)); cards.add(new SetCardInfo("Suburban Sanctuary", 185, Rarity.COMMON, mage.cards.s.SuburbanSanctuary.class));
cards.add(new SetCardInfo("Subway Train", 178, Rarity.COMMON, mage.cards.s.SubwayTrain.class)); cards.add(new SetCardInfo("Subway Train", 178, Rarity.COMMON, mage.cards.s.SubwayTrain.class));
cards.add(new SetCardInfo("Sudden Strike", 19, Rarity.UNCOMMON, mage.cards.s.SuddenStrike.class));
cards.add(new SetCardInfo("Sun-Spider, Nimble Webber", 154, Rarity.UNCOMMON, mage.cards.s.SunSpiderNimbleWebber.class)); cards.add(new SetCardInfo("Sun-Spider, Nimble Webber", 154, Rarity.UNCOMMON, mage.cards.s.SunSpiderNimbleWebber.class));
cards.add(new SetCardInfo("Supportive Parents", 119, Rarity.UNCOMMON, mage.cards.s.SupportiveParents.class)); cards.add(new SetCardInfo("Supportive Parents", 119, Rarity.UNCOMMON, mage.cards.s.SupportiveParents.class));
cards.add(new SetCardInfo("Swamp", 191, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Swamp", 191, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));