forked from External/mage
[SPM] update wrong effect access levels
This commit is contained in:
parent
721b9b90c9
commit
54975d8051
9 changed files with 9 additions and 8 deletions
|
|
@ -51,7 +51,7 @@ public final class BlackCatCunningThief extends CardImpl {
|
|||
}
|
||||
class BlackCatCunningThiefEffect extends OneShotEffect {
|
||||
|
||||
public BlackCatCunningThiefEffect() {
|
||||
BlackCatCunningThiefEffect() {
|
||||
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";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ public final class CarnageCrimsonChaos extends CardImpl {
|
|||
|
||||
class CarnageCrimsonChaosReturnEffect extends OneShotEffect {
|
||||
|
||||
public CarnageCrimsonChaosReturnEffect() {
|
||||
CarnageCrimsonChaosReturnEffect() {
|
||||
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.\"";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ public final class CheeringCrowd extends CardImpl {
|
|||
}
|
||||
class CheeringCrowdDoIfPaidEffect extends DoIfCostPaid {
|
||||
|
||||
public CheeringCrowdDoIfPaidEffect() {
|
||||
CheeringCrowdDoIfPaidEffect() {
|
||||
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);
|
||||
staticText = "that player may put a +1/+1 counter on this creature. If they do, they add {C} for each counter on it";
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ public final class HydroManFluidFelon extends CardImpl {
|
|||
}
|
||||
class HydroManFluidFelonEffect extends ContinuousEffectImpl {
|
||||
|
||||
public HydroManFluidFelonEffect() {
|
||||
HydroManFluidFelonEffect() {
|
||||
super(Duration.UntilYourNextTurn, Outcome.Neutral);
|
||||
this.staticText = "Until your next turn, he becomes a land and gains \"{T}: Add {U}.\"";
|
||||
this.addDependencyType(DependencyType.BecomeNonbasicLand);
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ public final class MisterNegative extends CardImpl {
|
|||
|
||||
class MisterNegativeEffect extends OneShotEffect {
|
||||
|
||||
public MisterNegativeEffect() {
|
||||
MisterNegativeEffect() {
|
||||
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.";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ public final class ParkerLuck extends CardImpl {
|
|||
|
||||
class ParkerLuckEffect extends OneShotEffect {
|
||||
|
||||
public ParkerLuckEffect() {
|
||||
ParkerLuckEffect() {
|
||||
super(Outcome.Damage);
|
||||
staticText = "two target players each reveal the top card of their library. " +
|
||||
"They each lose life equal to the mana value of the card " +
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ public final class RhinosRampage extends CardImpl {
|
|||
|
||||
class RhinosRampageEffect extends OneShotEffect {
|
||||
|
||||
public RhinosRampageEffect() {
|
||||
RhinosRampageEffect() {
|
||||
super(Outcome.BoostCreature);
|
||||
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";
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ public final class ShadowOfTheGoblin extends CardImpl {
|
|||
|
||||
class ShadowOfTheGoblinTriggeredAbility extends TriggeredAbilityImpl {
|
||||
|
||||
public ShadowOfTheGoblinTriggeredAbility(Effect effect) {
|
||||
ShadowOfTheGoblinTriggeredAbility(Effect effect) {
|
||||
super(Zone.BATTLEFIELD, effect, false);
|
||||
setTriggerPhrase("Whenever you play a land or cast a spell from anywhere other than your hand, ");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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("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("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("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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue