mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[BBD] fixed Archon of Valor's Reach not allowing players to choose sorceries (fixes #7183)
This commit is contained in:
parent
35902ee84a
commit
e3733dfae7
1 changed files with 9 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue