[BBD] fixed Archon of Valor's Reach not allowing players to choose sorceries (fixes #7183)

This commit is contained in:
Evan Kranzler 2020-11-11 21:25:14 -05:00
parent 35902ee84a
commit e3733dfae7

View file

@ -43,8 +43,15 @@ public final class ArchonOfValorsReach extends CardImpl {
// As Archon of Valor's Reach enters the battlefield, choose artifact, enchantment, instant, sorcery, or planeswalker.
this.addAbility(new AsEntersBattlefieldAbility(
new ChooseCardTypeEffect(Outcome.Benefit, Arrays.asList(CardType.ARTIFACT, CardType.ENCHANTMENT, CardType.INSTANT, CardType.PLANESWALKER))
.setText("choose artifact, enchantment, instant, sorcery, or planeswalker")
new ChooseCardTypeEffect(
Outcome.Benefit,
Arrays.asList(
CardType.ARTIFACT,
CardType.ENCHANTMENT,
CardType.INSTANT,
CardType.SORCERY,
CardType.PLANESWALKER
)).setText("choose artifact, enchantment, instant, sorcery, or planeswalker")
));
// Players can't cast spells of the chosen type.