From 2c23370bf6bebc81232e62b7f8313d3feb17e250 Mon Sep 17 00:00:00 2001 From: xenohedron Date: Thu, 12 Sep 2024 20:16:03 -0400 Subject: [PATCH] minor adjustments to Roshan, Hidden Magister --- Mage.Sets/src/mage/cards/r/RoshanHiddenMagister.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/cards/r/RoshanHiddenMagister.java b/Mage.Sets/src/mage/cards/r/RoshanHiddenMagister.java index 47760e576b4..888cf3e33d2 100644 --- a/Mage.Sets/src/mage/cards/r/RoshanHiddenMagister.java +++ b/Mage.Sets/src/mage/cards/r/RoshanHiddenMagister.java @@ -26,8 +26,8 @@ import mage.filter.predicate.card.FaceDownPredicate; public final class RoshanHiddenMagister extends CardImpl { private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Face-down creatures"); - public static final FilterControlledCreatureSpell filterSpells = new FilterControlledCreatureSpell("creature spells you control"); - public static final FilterOwnedCreatureCard filterCards = new FilterOwnedCreatureCard("creature cards you own"); + private static final FilterControlledCreatureSpell filterSpells = new FilterControlledCreatureSpell("creature spells you control"); + private static final FilterOwnedCreatureCard filterCards = new FilterOwnedCreatureCard("creature cards you own"); static { filter.add(FaceDownPredicate.instance); @@ -59,10 +59,10 @@ public final class RoshanHiddenMagister extends CardImpl { // Whenever a permanent you control is turned face up, you draw a card and you lose 1 life. Ability ability = new TurnedFaceUpAllTriggeredAbility( - new DrawCardSourceControllerEffect(1), + new DrawCardSourceControllerEffect(1, true), StaticFilters.FILTER_CONTROLLED_A_PERMANENT ); - ability.addEffect(new LoseLifeSourceControllerEffect(1)); + ability.addEffect(new LoseLifeSourceControllerEffect(1).concatBy("and")); this.addAbility(ability); }