Update constructors

This commit is contained in:
xenohedron 2023-05-20 21:46:33 -04:00
parent 3a6e84043c
commit 9aaf1ccef7
4 changed files with 11 additions and 15 deletions

View file

@ -33,7 +33,7 @@ public final class BogardanDragonheart extends CardImpl {
// Sacrifice another creature: Until end of turn, Bogardan Dragonheart becomes a Dragon with base power and toughness 4/4, flying, and haste. // Sacrifice another creature: Until end of turn, Bogardan Dragonheart becomes a Dragon with base power and toughness 4/4, flying, and haste.
this.addAbility(new SimpleActivatedAbility(new BecomesCreatureSourceEffect( this.addAbility(new SimpleActivatedAbility(new BecomesCreatureSourceEffect(
new BogardanDragonheartToken(), null, Duration.EndOfTurn, false, new BogardanDragonheartToken(), null, Duration.EndOfTurn, false,
false, null, null, false false, false
), new SacrificeTargetCost(new TargetControlledPermanent(StaticFilters.FILTER_CONTROLLED_ANOTHER_CREATURE)))); ), new SacrificeTargetCost(new TargetControlledPermanent(StaticFilters.FILTER_CONTROLLED_ANOTHER_CREATURE))));
} }

View file

@ -47,7 +47,7 @@ public final class ChromiumTheMutable extends CardImpl {
Ability ability = new SimpleActivatedAbility( Ability ability = new SimpleActivatedAbility(
new BecomesCreatureSourceEffect( new BecomesCreatureSourceEffect(
new ChromiumTheMutableToken(), null, Duration.EndOfTurn, new ChromiumTheMutableToken(), null, Duration.EndOfTurn,
false, false, null, null, true false, false, true
).setText("Until end of turn, {this} becomes " ).setText("Until end of turn, {this} becomes "
+ "a Human with base power and toughness 1/1, " + "a Human with base power and toughness 1/1, "
+ "loses all abilities, and gains hexproof"), + "loses all abilities, and gains hexproof"),

View file

@ -21,13 +21,11 @@ import mage.cards.CardSetInfo;
import mage.constants.*; import mage.constants.*;
import mage.filter.FilterCard; import mage.filter.FilterCard;
import mage.filter.FilterPermanent; import mage.filter.FilterPermanent;
import mage.filter.StaticFilters;
import mage.filter.common.FilterControlledLandPermanent; import mage.filter.common.FilterControlledLandPermanent;
import mage.filter.common.FilterLandCard; import mage.filter.common.FilterLandCard;
import mage.filter.predicate.Predicates; import mage.filter.predicate.Predicates;
import mage.game.Game; import mage.game.Game;
import mage.game.permanent.token.custom.CreatureToken; import mage.game.permanent.token.custom.CreatureToken;
import mage.players.Player;
import mage.target.common.TargetCardInLibrary; import mage.target.common.TargetCardInLibrary;
/** /**
@ -65,7 +63,7 @@ public final class MonumentToPerfection extends CardImpl {
.withAbility(IndestructibleAbility.getInstance()) .withAbility(IndestructibleAbility.getInstance())
.withAbility(new ToxicAbility(9)), .withAbility(new ToxicAbility(9)),
null, Duration.Custom, true, null, Duration.Custom, true,
false, null, null, true false, true
), new GenericManaCost(3), MonumentToPerfectionCondition.instance ), new GenericManaCost(3), MonumentToPerfectionCondition.instance
).addHint(MonumentToPerfectionValue.getHint())); ).addHint(MonumentToPerfectionValue.getHint()));
} }
@ -136,4 +134,4 @@ enum MonumentToPerfectionCondition implements Condition {
public String toString() { public String toString() {
return "there are nine or more lands with different names among the basic, Sphere, and Locus lands you control"; return "there are nine or more lands with different names among the basic, Sphere, and Locus lands you control";
} }
} }

View file

@ -23,25 +23,23 @@ public class BecomesCreatureSourceEffect extends ContinuousEffectImpl implements
protected boolean durationRuleAtStart = false; // put duration rule at the start of the rules text rather than the end protected boolean durationRuleAtStart = false; // put duration rule at the start of the rules text rather than the end
public BecomesCreatureSourceEffect(Token token, String theyAreStillType, Duration duration) { public BecomesCreatureSourceEffect(Token token, String theyAreStillType, Duration duration) {
this(token, theyAreStillType, duration, false, false); this(token, theyAreStillType, duration, false, false, false);
}
public BecomesCreatureSourceEffect(Token token, Duration duration) {
this(token, "", duration, true, false, false);
} }
public BecomesCreatureSourceEffect(Token token, String theyAreStillType, Duration duration, boolean losePreviousTypes, boolean characterDefining) { public BecomesCreatureSourceEffect(Token token, String theyAreStillType, Duration duration, boolean losePreviousTypes, boolean characterDefining) {
this(token, theyAreStillType, duration, losePreviousTypes, characterDefining, null, null); this(token, theyAreStillType, duration, losePreviousTypes, characterDefining, false);
} }
public BecomesCreatureSourceEffect(Token token, String theyAreStillType, Duration duration, boolean losePreviousTypes, boolean characterDefining, DynamicValue power, DynamicValue toughness) { public BecomesCreatureSourceEffect(Token token, String theyAreStillType, Duration duration, boolean losePreviousTypes, boolean characterDefining, boolean loseAbilities) {
this(token, theyAreStillType, duration, losePreviousTypes, characterDefining, power, toughness, false);
}
public BecomesCreatureSourceEffect(Token token, String theyAreStillType, Duration duration, boolean losePreviousTypes, boolean characterDefining, DynamicValue power, DynamicValue toughness, boolean loseAbilities) {
super(duration, Outcome.BecomeCreature); super(duration, Outcome.BecomeCreature);
this.characterDefining = characterDefining; this.characterDefining = characterDefining;
this.token = token; this.token = token;
this.theyAreStillType = theyAreStillType; this.theyAreStillType = theyAreStillType;
this.losePreviousTypes = losePreviousTypes; this.losePreviousTypes = losePreviousTypes;
this.power = power;
this.toughness = toughness;
this.loseAbilities = loseAbilities; this.loseAbilities = loseAbilities;
setText(); setText();