Closed jamespicone closed 7 months ago
Describe the bug If one of the Knight's equipment targets is out of play when Imbued Vitality is destroyed, it stops being a target.
What does it affect Card(s): Plate Helm, Plate Mail Deck(s): The Knight
To Reproduce Steps to reproduce the behavior:
Unit test:
[Test] public void Armor_ImbuedVitalityOutOfPlay([Values("PlateHelm", "PlateMail")] string armor) { SetupGameController("GrandWarlordVoss", HeroNamespace, "RealmOfDiscord"); StartGame(); //nuke all baron blades cards so his ongoings don't break tests DestroyCards((Card c) => c.IsVillain && c.IsInPlayAndHasGameText && !c.IsCharacter); DiscardAllCards(knight); var target = PutInHand(knight, armor); int targetHP = armor == "PlateHelm" ? 3 : 5; GoToPlayCardPhase(knight); PrintSeparator("Test"); var imbue = PlayCard("ImbuedVitality"); AssertIsTarget(target, 6); DestroyCard(imbue); AssertIsTarget(target, targetHP); }
Reported on discord by n202015226ac
Describe the bug If one of the Knight's equipment targets is out of play when Imbued Vitality is destroyed, it stops being a target.
What does it affect Card(s): Plate Helm, Plate Mail Deck(s): The Knight
To Reproduce Steps to reproduce the behavior:
Unit test: