[MKM] Implement Burden of Proof

This commit is contained in:
theelk801 2023-12-06 18:24:07 -05:00
parent b733ee74e9
commit d01fc319fa
2 changed files with 125 additions and 0 deletions

View file

@ -0,0 +1,124 @@
package mage.cards.b;
import mage.abilities.Ability;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.condition.Condition;
import mage.abilities.condition.InvertCondition;
import mage.abilities.condition.common.AttachedToMatchesFilterCondition;
import mage.abilities.decorator.ConditionalRestrictionEffect;
import mage.abilities.effects.ContinuousEffectImpl;
import mage.abilities.effects.common.AttachEffect;
import mage.abilities.effects.common.combat.CantBlockAttachedEffect;
import mage.abilities.keyword.EnchantAbility;
import mage.abilities.keyword.FlashAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.*;
import mage.filter.common.FilterControlledPermanent;
import mage.filter.common.FilterCreaturePermanent;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.target.TargetPermanent;
import mage.target.common.TargetCreaturePermanent;
import java.util.Objects;
import java.util.Optional;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class BurdenOfProof extends CardImpl {
private static final Condition condition = new InvertCondition(
new AttachedToMatchesFilterCondition(new FilterControlledPermanent(SubType.DETECTIVE))
);
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent(SubType.DETECTIVE, "");
public BurdenOfProof(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{U}");
this.subtype.add(SubType.AURA);
// Flash
this.addAbility(FlashAbility.getInstance());
// Enchant creature
TargetPermanent auraTarget = new TargetCreaturePermanent();
this.getSpellAbility().addTarget(auraTarget);
this.getSpellAbility().addEffect(new AttachEffect(Outcome.BoostCreature));
this.addAbility(new EnchantAbility(auraTarget));
// Enchanted creature gets +2/+2 as long as it's a Detective you control. Otherwise, it has base power and toughness 1/1 and can't block Detectives.
Ability ability = new SimpleStaticAbility(new BurdenOfProofEffect());
ability.addEffect(new ConditionalRestrictionEffect(new CantBlockAttachedEffect(
AttachmentType.AURA, Duration.WhileOnBattlefield, filter
), condition, "and can't block Detectives"));
this.addAbility(ability);
}
private BurdenOfProof(final BurdenOfProof card) {
super(card);
}
@Override
public BurdenOfProof copy() {
return new BurdenOfProof(this);
}
}
class BurdenOfProofEffect extends ContinuousEffectImpl {
BurdenOfProofEffect() {
super(Duration.WhileOnBattlefield, Outcome.Neutral);
staticText = "enchanted creature gets +2/+2 as long as it's a Detective " +
"you control. Otherwise, it has base power and toughness 1/1";
}
private BurdenOfProofEffect(final BurdenOfProofEffect effect) {
super(effect);
}
@Override
public BurdenOfProofEffect copy() {
return new BurdenOfProofEffect(this);
}
@Override
public boolean apply(Layer layer, SubLayer sublayer, Ability source, Game game) {
if (layer != Layer.PTChangingEffects_7) {
return false;
}
Permanent permanent = Optional
.ofNullable(source.getSourcePermanentIfItStillExists(game))
.filter(Objects::nonNull)
.map(Permanent::getAttachedTo)
.map(game::getPermanent)
.orElse(null);
if (permanent == null) {
return false;
}
if (permanent.isControlledBy(source.getControllerId()) && permanent.hasSubtype(SubType.DETECTIVE, game)) {
if (sublayer == SubLayer.ModifyPT_7c) {
permanent.getPower().increaseBoostedValue(2);
permanent.getToughness().increaseBoostedValue(2);
return true;
}
} else if (sublayer == SubLayer.SetPT_7b) {
permanent.getPower().setModifiedBaseValue(1);
permanent.getToughness().setModifiedBaseValue(1);
return true;
}
return false;
}
@Override
public boolean apply(Game game, Ability source) {
return false;
}
@Override
public boolean hasLayer(Layer layer) {
return layer == Layer.PTChangingEffects_7;
}
}

View file

@ -24,6 +24,7 @@ public final class MurdersAtKarlovManor extends ExpansionSet {
cards.add(new SetCardInfo("Alquist Proft, Master Sleuth", 185, Rarity.MYTHIC, mage.cards.a.AlquistProftMasterSleuth.class));
cards.add(new SetCardInfo("Aurelia, the Law Above", 188, Rarity.RARE, mage.cards.a.AureliaTheLawAbove.class));
cards.add(new SetCardInfo("Benthic Criminologists", 40, Rarity.COMMON, mage.cards.b.BenthicCriminologists.class));
cards.add(new SetCardInfo("Burden of Proof", 42, Rarity.UNCOMMON, mage.cards.b.BurdenOfProof.class));
cards.add(new SetCardInfo("Curious Cadaver", 194, Rarity.UNCOMMON, mage.cards.c.CuriousCadaver.class));
cards.add(new SetCardInfo("Deduce", 52, Rarity.COMMON, mage.cards.d.Deduce.class));
cards.add(new SetCardInfo("Fanatical Strength", 159, Rarity.COMMON, mage.cards.f.FanaticalStrength.class));