mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Callous Oppressor fix
This commit is contained in:
parent
887fec5301
commit
33cdada012
1 changed files with 38 additions and 12 deletions
|
@ -51,8 +51,6 @@ import mage.constants.Duration;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
import mage.filter.common.FilterCreaturePermanent;
|
import mage.filter.common.FilterCreaturePermanent;
|
||||||
import mage.filter.predicate.Predicates;
|
|
||||||
import mage.filter.predicate.mageobject.ChosenSubtypePredicate;
|
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.permanent.Permanent;
|
import mage.game.permanent.Permanent;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
|
@ -76,17 +74,15 @@ public class CallousOppressor extends CardImpl {
|
||||||
this.addAbility(new SkipUntapOptionalAbility());
|
this.addAbility(new SkipUntapOptionalAbility());
|
||||||
|
|
||||||
// As Callous Oppressor enters the battlefield, an opponent chooses a creature type.
|
// As Callous Oppressor enters the battlefield, an opponent chooses a creature type.
|
||||||
this.addAbility(new AsEntersBattlefieldAbility(new OpponentChooseCreatureTypeEffect()));
|
this.addAbility(new AsEntersBattlefieldAbility(new CallousOppressorChooseCreatureTypeEffect()));
|
||||||
|
|
||||||
// {T}: Gain control of target creature that isn't of the chosen type for as long as Callous Oppressor remains tapped.
|
// {T}: Gain control of target creature that isn't of the chosen type for as long as Callous Oppressor remains tapped.
|
||||||
FilterCreaturePermanent filter = new FilterCreaturePermanent("creature that isn't of the chosen type");
|
|
||||||
filter.add(Predicates.not(new ChosenSubtypePredicate(this.getId())));
|
|
||||||
ConditionalContinuousEffect effect = new ConditionalContinuousEffect(
|
ConditionalContinuousEffect effect = new ConditionalContinuousEffect(
|
||||||
new GainControlTargetEffect(Duration.OneUse),
|
new GainControlTargetEffect(Duration.OneUse),
|
||||||
SourceTappedCondition.instance,
|
SourceTappedCondition.instance,
|
||||||
"Gain control of target creature for as long as Callous Oppressor remains tapped");
|
"Gain control of target creature for as long as {this} remains tapped");
|
||||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
|
||||||
ability.addTarget(new TargetCreaturePermanent(filter));
|
ability.addTarget(new TargetCreaturePermanent(new CallousOppressorFilter()));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -100,14 +96,43 @@ public class CallousOppressor extends CardImpl {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class OpponentChooseCreatureTypeEffect extends OneShotEffect {
|
class CallousOppressorFilter extends FilterCreaturePermanent {
|
||||||
|
|
||||||
|
public CallousOppressorFilter() {
|
||||||
|
super("creature that isn't of the chosen type");
|
||||||
|
}
|
||||||
|
|
||||||
|
public CallousOppressorFilter(final CallousOppressorFilter filter) {
|
||||||
|
super(filter);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public CallousOppressorFilter copy() {
|
||||||
|
return new CallousOppressorFilter(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean match(Permanent permanent, UUID sourceId, UUID playerId, Game game) {
|
||||||
|
if (super.match(permanent, sourceId, playerId, game)) {
|
||||||
|
SubType subtype = (SubType) game.getState().getValue(sourceId + "_type");
|
||||||
|
if (subtype != null && permanent.hasSubtype(subtype, game)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
public OpponentChooseCreatureTypeEffect() {
|
class CallousOppressorChooseCreatureTypeEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
public CallousOppressorChooseCreatureTypeEffect() {
|
||||||
super(Outcome.Benefit);
|
super(Outcome.Benefit);
|
||||||
staticText = "an opponent chooses a creature type";
|
staticText = "an opponent chooses a creature type";
|
||||||
}
|
}
|
||||||
|
|
||||||
public OpponentChooseCreatureTypeEffect(final OpponentChooseCreatureTypeEffect effect) {
|
public CallousOppressorChooseCreatureTypeEffect(final CallousOppressorChooseCreatureTypeEffect effect) {
|
||||||
super(effect);
|
super(effect);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -147,14 +172,15 @@ class OpponentChooseCreatureTypeEffect extends OneShotEffect {
|
||||||
if (mageObject instanceof Permanent) {
|
if (mageObject instanceof Permanent) {
|
||||||
((Permanent) mageObject).addInfo("chosen type", CardUtil.addToolTipMarkTags("Chosen type: " + typeChoice.getChoice()), game);
|
((Permanent) mageObject).addInfo("chosen type", CardUtil.addToolTipMarkTags("Chosen type: " + typeChoice.getChoice()), game);
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public OpponentChooseCreatureTypeEffect copy() {
|
public CallousOppressorChooseCreatureTypeEffect copy() {
|
||||||
return new OpponentChooseCreatureTypeEffect(this);
|
return new CallousOppressorChooseCreatureTypeEffect(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue