From aae5964683b93bd744e832a03c5bd8bc616ec45e Mon Sep 17 00:00:00 2001 From: xenohedron Date: Sat, 9 Sep 2023 14:07:25 -0400 Subject: [PATCH] adjust rules text comments --- Mage.Sets/src/mage/cards/k/KharnTheBetrayer.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/cards/k/KharnTheBetrayer.java b/Mage.Sets/src/mage/cards/k/KharnTheBetrayer.java index 64623458779..62953745262 100644 --- a/Mage.Sets/src/mage/cards/k/KharnTheBetrayer.java +++ b/Mage.Sets/src/mage/cards/k/KharnTheBetrayer.java @@ -38,19 +38,19 @@ public class KharnTheBetrayer extends CardImpl { this.power = new MageInt(5); this.toughness = new MageInt(1); - // {this} attacks or blocks each combat if able + // Berzerker - Kharn the Betrayer attacks or blocks each combat if able. Ability ability = new SimpleStaticAbility(new AttacksIfAbleSourceEffect(Duration.WhileOnBattlefield).setText("{this} attacks")); ability.addEffect(new BlocksIfAbleSourceEffect(Duration.WhileOnBattlefield).setText("blocks each combat if able").concatBy("or")); this.addAbility(ability.withFlavorWord("Berzerker")); - // When you lose control of {this}, draw two cards + // Sigil of Corruption - When you lose control of Kharn the Betrayer, draw two cards. this.addAbility(new KharnTheBetrayerTriggeredAbility().withFlavorWord("Sigil of Corruption")); - // If damage would be dealt to {this}, prevent that damage and an opponent of your choice gains control of it. + // The Betrayer - If damage would be dealt to Kharn the Betrayer, prevent that damage and an opponent of your choice gains control of it. this.addAbility(new SimpleStaticAbility(new KharnTheBetrayerPreventionEffect()).withFlavorWord("The Betrayer")); } - protected KharnTheBetrayer(final KharnTheBetrayer card) { + private KharnTheBetrayer(final KharnTheBetrayer card) { super(card); } @@ -131,4 +131,4 @@ class KharnTheBetrayerPreventionEffect extends PreventionEffectImpl { return super.applies(event, source, game) && event.getTargetId().equals(source.getSourceId()); } -} \ No newline at end of file +}