#69806: "Allow player to choose order of end-of-round effects"
Про що цей звіт?
Що трапилося? Будь ласка, виберіть нижче
Що трапилося? Будь ласка, виберіть нижче
Будь ласка, перевірте, чи вже є звіт на цю тему
Якщо це так, будь ласка, ПРОГОЛОСУЙТЕ за цей звіт. Звіти з найбільшою кількістю голосів розглядатимуть У ПЕРШУ ЧЕРГУ!
| # | Status | Votes | Game | Type | Title | Last update |
|---|
Детальний опис
-
• Будь ласка, скопіюйте/вставте повідомлення про помилку, якщо ви бачите якесь на своєму екрані.
According to the rules of Seasons, a player should be able to choose the order of end-of-round effects.
-
• Будь ласка, опишіть, що ви намагалися зробити, що зробили, та що трапилось
• Який у вас браузер?
Mozilla v5
-
• Будь ласка, скопіюйте/вставте текст відображений англійською замість вашої мови. Якщо у вас є скріншот цієї помилки (рекомендовано), ви можете скористатися будь-яким сервісом для зберігання зображень (наприклад, snipboard.io), завантажити його та вставити сюди посилання. Чи цей текст доступний у системі перекладів? Якщо так, то чи перекладали його понад 24 години тому?
According to the rules of Seasons, a player should be able to choose the order of end-of-round effects.
• Який у вас браузер?
Mozilla v5
-
• Будь ласка, поясніть вашу пропозицію точно й лаконічно, щоб було якомога легше зрозуміти, що ви маєте на увазі.
According to the rules of Seasons, a player should be able to choose the order of end-of-round effects.
• Який у вас браузер?
Mozilla v5
-
• Що було на екрані до того, як ваша гра заблокувалася (Порожній екран? Частина ігрового інтерфейсу? Повідомлення про помилку?)
According to the rules of Seasons, a player should be able to choose the order of end-of-round effects.
• Який у вас браузер?
Mozilla v5
-
• Які саме правила були порушені адаптацією гри на BGA
According to the rules of Seasons, a player should be able to choose the order of end-of-round effects.
-
• Чи видні порушення правил на повторі гри? Якщо так, на якому кроці?
• Який у вас браузер?
Mozilla v5
-
• Яку ігрову дію ви намагалися виконати?
According to the rules of Seasons, a player should be able to choose the order of end-of-round effects.
-
• Що ви намагались зробити, щоб активувати цю ігрову дію?
-
• Що сталося, коли Ви намагалися виконати цю дію (текст помилки, статус на панелі повідомлень, ...)?
• Який у вас браузер?
Mozilla v5
-
• На якому етапі гри виникла проблема (яка була на той момент вказівка в грі)?
According to the rules of Seasons, a player should be able to choose the order of end-of-round effects.
-
• Що стається, коли ви намагаєтесь зробити ігрову дію (повідомлення про помилку, повідомлення на панелі статусу гри і т.п.)?
• Який у вас браузер?
Mozilla v5
-
• Будь ласка, опишіть візуальну помилку. Якщо у вас є скріншот цієї помилки (рекомендовано), ви можете скористатися будь-яким сервісом для зберігання зображень (наприклад, snipboard.io), завантажити його та вставити сюди посилання.
According to the rules of Seasons, a player should be able to choose the order of end-of-round effects.
• Який у вас браузер?
Mozilla v5
-
• Будь ласка, скопіюйте/вставте текст відображений англійською замість вашої мови. Якщо у вас є скріншот цієї помилки (рекомендовано), ви можете скористатися будь-яким сервісом для зберігання зображень (наприклад, snipboard.io), завантажити його та вставити сюди посилання. Чи цей текст доступний у системі перекладів? Якщо так, то чи перекладали його понад 24 години тому?
According to the rules of Seasons, a player should be able to choose the order of end-of-round effects.
• Який у вас браузер?
Mozilla v5
-
• Будь ласка, поясніть вашу пропозицію точно й лаконічно, щоб було якомога легше зрозуміти, що ви маєте на увазі.
According to the rules of Seasons, a player should be able to choose the order of end-of-round effects.
• Який у вас браузер?
Mozilla v5
Історія звітів
Still, you can never have a hard-coded order which will work for all cases, there will always be corner cases, for example:
- A player may want to have fewer crystals (so intentionally triggering Wondrous Chest at 3 energies, before Heart of Argos or after Fairy Monolith) to kill an opponent Titus.
- A player may want to activate Horn of Plenty without energies in their reserve (before using Beggar's Horn or Heart of Argos) to have more energies the next turn
- For the two random effects Dial of Colof and Carnivora Strombosea, the player may decide one based on the outcome of the other
So ideally the player should be able to choose explicitly in which order effects happen.
Unfortunately, a naive implementation would slow down the game (especially turn-based games) if automatic effects such as Wondrous Chest or Titus Deepgaze would no longer be automatic. So the game should still do these automatic effects without player interaction if the order doesn't matter (determining whether the order matters may be non-trivial)
- Dial of Colof
- Damned Soul of Onys
- Ethiel's Fountain
- Carnivora Strombosea
- Beggar's Horn
- Heart of Argos
- Titus Deepgaze
- Wondrous Chest
- Mesodae’s Lantern
- Io's transmuter
- Fairy Monolith
- Chalice of eternity
- Horn of Plenty
but where we will restart the list whenever an effect actually triggers. So the fact that Horn of Plenty is last in thi list doesn't mean that no further effects are possible: whenever Horn of Plenty triggers, then we'll recheck the list from the beginning.
The general principle remains that the player retains the choice between performing these actions manually or performing them automatically. Seasons is a notable exception because it seems to me that this is one of the first games implemented on BGA, if not the first. In my opinion, there is no longer any reason to retain this exception, as soon as a developer recognizes the need for necessary changes.
It should already be noted that automatism is of much less interest now that the end-round effects are solved by player in the order of the turn and no longer card by card as before. In addition, some end-of-turn effects require player intervention anyway, for example to choose an effect, or the type of energy received.
However, when there is only one end-of-turn effect, and no choice is required, the player’s intervention is not useful.
Fiercely in favour of strict application of the rules, I would add that it would be useful, in case of manual selection of cards with end-of-turn effects, to be able to differentiate the achievable effects from the inoperative effects by a color code. This in order to be able to choose more easily to activate inoperative effects (but which could become achievable during the end-of-turn of the player) because deemed undesirable at this time of the game.
Додайте що-небудь до цього відгуку
- ID іншого столу / ходу
- F5 вирішило проблему?
- Чи виникає проблема періодично? Щоразу? Випадково?
- Якщо у вас є скріншот цієї помилки (рекомендовано), ви можете скористатися будь-яким сервісом для зберігання зображень (наприклад, snipboard.io), завантажити його та вставити сюди посилання.
