✅ [FAQ] Есть вопрос? Напиши здесь — получи ответ (Часть 1)

У кого-нибудь есть ссылка на обзор патча, в котором меняли порядок взаимойдествий на доске? (это было года 3-4 назад, вроде)

Это об этом?))

https://youtu.be/3nJDHtyh7PU

Таки да. Правда, помню, еще на самом сайте было подробно с циферками все описано, что и когда.
Но вообще, у моего вопроса был подтекст. Мне вот не ясно, будет ли в классике все эти взаимодействия срабатывать, как сейчас или вот как до этого патча.

Да, подробности были, вот только вероятнее всего отдельной темой на форуме, в статьях еще не искала, но ищейка может скинуть пока так:

Hearthstone has a lot going on under the hood. The cause-and-effect relationships when cards are played are relatively straightforward and easy to predict, but because of the way certain events are timed, some very surprising things can happen in rare circumstances. We want cards to work the way that you guess they might—in other words, we want the game to work intuitively.

In the upcoming patch, we’re making some changes in pursuit of that goal. We want Hearthstone to continue to be strategically deep: a game of careful choices, calculated risks, and exciting events. So we want to be extra clear that this update isn’t a change in depth; instead it’s one step in an ongoing effort improve Hearthstone’s mechanics.

Hearthstone’s core gameplay won’t change, but what will change are some rare edge-cases.

Please be aware: what follows is a detailed look at Hearthstone’s mechanics by Hearthstone Gameplay Engineer Josh Durica. If you want to delve into the nitty-gritty details regarding how this change will work, read on.

First, A Glossary
Event
Events are interactions that occur throughout gameplay that can cause triggers to activate when they happen.

Example Events:

  • Whenever a Card is Played
  • After a Card is Played
  • Deathrattle (When this minion dies)
  • Whenever a Minion Takes Damage
  • At the End of Your Turn

Trigger
A trigger has two parts: an event (usually starts with “Whenever”, “After”, or “At”), and an effect. Sometimes triggers can also have a condition (usually noted with “if” or “while”, but sometimes noted by qualifiers like “your”).

Example triggers:

  • Whenever you cast a spell, gain +1 Attack.
  • After you cast a spell, deal 1 damage to ALL minions.
  • At the end of your turn, give another random friendly minion +1 Health.
  • If you control a Secret at the end of your turn, gain +2/+2.

Zone
In Hearthstone, there are three zones where triggers can happen, and they happen in order: First, any triggers in the Battlefield, then those that occur in a player’s Hand, and finally those that belong to cards in a player’s Deck.

Sequence
Whenever an action is taken, Hearthstone executes a sequence of steps to resolve what happens.

Here’s a simplified example sequence:

* ACTION: A card is played (this begins the sequence)
* EVENT: **Whenever A Card is Played**

o Whenever A Card is Played

triggers

resolve

* Card ability activates
* EVENT: After a Card is Played **event** occurs

o After a Card is Played

triggers

resolve

Here’s what that sequence would look like using actual cards, if you had a Questing Adventurer and a Flamewaker on the board, and then played Frostbolt:

  • ACTION: Frostbolt is played (this begins the sequence)

  • EVENT: Whenever a Card is Played triggers resolve
    o Questing Adventurer gains +1/+1

  • Frostbolt’s text resolves: Deal 3 damage and freeze

  • EVENT: After a Card is Played triggers resolve
    o Flamewaker shoots two missiles

This is a simple example, but a sequence can incorporate many events and triggers.

Keep in mind that dealing damage, destroying a minion, and other things can interrupt sequences with new sequences, like in this more detailed example:

  • ACTION: Frostbolt is played (this begins the sequence)

  • EVENT: Whenever a Card is Played triggers resolve
    o Questing Adventurer gains +1/+1

    • Frostbolt’s text resolves: Deal 3 damage and freeze
      o NEW SEQUENCE: Damage dealt
      EVENT:

Whenever a Minion Takes Damage triggers

resolve

  • EVENT: After a Card is Played triggers resolve
    o Flamewaker shoots 1 missile

  • NEW SEQUENCE: Damage dealt

  • EVENT: Whenever a Card Takes Damage triggers resolve
    o Flamewaker shoots another missile

  • NEW SEQUENCE: Damage dealt

  • EVENT: Whenever a Card Takes Damage triggers resolve

In Pursuit of the Goal
If you watched the video in our recent blog post, then you saw two different examples of cards triggering in counter-intuitive ways because they weren’t present when the sequence that activated them took place. That sets the stage for the primary goal we wanted to accomplish with these changes:

If you want to trigger off something, you need to be present and valid when that something first happens.

A more technical way to say this is: In order for a trigger to activate from a sequence, it needs to be present and valid at the time the sequence began.

This means any card featuring a trigger that appears in the middle of a sequencecan’t activate during that sequence. So, when you play a card (or when a card is destroyed, or an attack occurs, etc.) you only need to consider what is currently on the board instead of guessing what the board state might be in the middle of the sequence. The Mindgames + Wild Pyromancer interaction showcased in the video is an example of an interaction improved by this change.

The valid qualifier is more subtle, but equally important. Before any trigger can activate, it needs to be validated. Each trigger has its own specific validation step, which allows the trigger to filter when it should and shouldn’t activate. For example, the Whenever a Card is Played event occurs when any card of any type (Minion, Spell, Weapon, etc.) is played. However, we want a card like Flamewaker to only triggerwhen a friendly spell is cast, so the Flamewaker’s validation step checks the card type and controller of the card played. In other words, Flamewaker’s trigger is only valid if the card played was a spell cast by Flamewaker’s controller.

Before our changes, we would validate triggers whenever their related eventoccurred, even if that was in the middle of the sequence. After the mechanics update, all triggers are validated when the sequence begins, and then they are only allowed to activate if they were valid from the start.

For further insight, let’s look at a bug that will be addressed by the update:

Currently, if you have a Djinni of Zephyrs on the board and cast Entomb on an enemy minion, your Djinni of Zephyrs will trigger, sending itself back to your deck. Not great for you or the Djinni! Djinni of Zephyrs triggers off the After a Card is Played event, and his validation step should only pass if the card played was a spell cast on a different friendly minion. Entomb is a spell, but it was cast on an enemy minion, so why does Djinni trigger?

Remember: the After a Card is Played event occurs after the ability on the played card resolves. In this case, that card is Entomb, and its ability moves the enemy minion into your deck. When the enemy minion enters your deck, it becomes a friendly minion. So, by the time the After a Card is Played event occurs, Djinni’s trigger is valid, because the minion is now friendly.

After the mechanics update, Djinni’s trigger is validated at the beginning of the sequence when the enemy minion is still on the battlefield, and because the triggerisn’t valid at that point (since Entomb counts as being cast on an enemy minion), it’s prevented from triggering when the After a Card is Played event occurs.

There is one final change we should mention, which is a tweak to when we validate triggers across different zones. Currently, the order in which triggers are validatedand activated looks like this:

  1. Validate Player 1 Battlefield triggers and then activate those that are valid.
  2. Validate Player 1 Hand triggers and then activate those that are valid.
  3. Validate Player 1 Deck triggers and then activate those that are valid.
  4. Validate Player 2 Battlefield triggers and then activate those that are valid.
  5. Validate Player 2 Hand triggers and then activate those that are valid.
  6. Validate Player 2 Deck triggers and then activate those that are valid.

That approach meant new triggers could appear in the middle of a sequence and still be activated, and a trigger’s validation could even be affected by previous **triggers’**activations. The Bolvar Fordragon/Spirit Echo interaction detailed in the video was an example of a weird interaction caused by this.

After the update, the order now looks like this:

  1. Validate all Battlefield triggers
  2. Validate all Hand triggers
  3. Validate all Deck triggers
  4. Activate Player 1 valid Battlefield triggers
  5. Activate Player 1 valid Hand triggers
  6. Activate Player 1 valid Deck triggers
  7. Activate Player 2 valid Battlefield triggers
  8. Activate Player 2 valid Hand triggers
  9. Activate Player 2 valid Deck triggers

This means all triggers are validated before any trigger is allowed to activate. Since all triggers are validated using the same game state, then triggers that appear in the middle aren’t allowed to fire. It’s important to note that the order in which triggersare activated is unchanged.

Here are some more examples of sequences and their results before and after the mechanics update:

Card Played
Example Interaction:
Player 1 has a Mad Scientist on the board, and a Mirror Entity in their deck.
Player 2 plays Stampeding Kodo.
Before Update

  1. Stampeding Kodo kills Mad Scientist.
  2. Mad Scientist pulls Mirror Entity into play.
  3. Mirror Entity triggers, copying Stampeding Kodo.
    After Update
  4. Stampeding Kodo kills Mad Scientist.
  5. Mad Scientist pulls Mirror Entity into play.
  6. Mirror Entity does NOT trigger, because it did not exist when Stampeding Kodo was played.

Minion Destroyed
Example Interaction:
Player 1 has a Piloted Sky Golem and a Wisp on the board (played in that order).
Player 1 plays Deathwing.
The Piloted Sky Golem spawn a Cult Master from its Deathrattle.
Before Update:
The Cult Master’s power triggers off of the Wisp’s death, and Player 1 draws a card.
After Update:
The Cult Master does not trigger off the Wisp’s death, because it wasn’t present to see the Wisp destroyed.

Summon Minion
Example Interaction:
Player 1 has Starving Buzzard and Rotface on the board.
Player 1 also has a Flame Leviathan on top of their deck.
Player 1 plays Savannah Highmane.
Starving Buzzard triggers off of Savannah Highmane, causing Player 1 to draw Flame Leviathan.
Flame Leviathan triggers, dealing 2 damage to all characters.
Rotface triggers off the damage and summons Spiritsinger Umbra.
Before Update:
Spirit Singer Umbra triggers off the Savannah Highmane and summons two hyenas.
After Update:
Spiritsinger Umbra does not trigger off the Savannah Highmane, because she was not present when Savannah Highmane was played.

Thanks for Reading!
Of course, our work to make Hearthstone better won’t stop here!
Like the majority of odd interactions, each of these situations represents an edge case. While this update will address every situation we illustrated (among many others), there are still bound to be more. Keep in mind these are substantial changes to the core systems that underlie Hearthstone! We need to make them incrementally, and with the utmost care, but you can rest assured that we’ll continue to make improvements over time.

2 лайка

А у меня у одного на оф сайте нет расписания показа карт (нового адона, а не кор сета). Странно это, если память не изменяет обычно показывали все карты, а только потом выпускали предзаказ

У всех нет.

Изменяет память.

Что случилось с hearthcards?

А с ним что-то случилось?))

Ты не поверишь, но минут 5 назад проверял его работоспособность. Он уже второй или третий день до этого лежал в коме. А после твоего сообщения снова проверил - и он работает_
Саламандра, воскресительтница падших.

3 лайка

Обращайтесь :wink:

Вот откопала кстати “в архивах”:



9 лайков

сегодня первый раз сменился лаунчер. В нем случаем нельзя отменить все новости, кроме нужной игры?

В планах близов на год грифона в каждой фазе есть Мини- набор.

Мини набор теперь будет каждое дополнение, а не только в последнем дополнении года?

Прошу прощения если тема уже поднималась.

Да. Каждый аддон. Это говорилось в разных интервью и пресс-релизах за последний месяц, а также на близзконе.

Эпик лежит в двух копиях(зачетный текст) :slightly_smiling_face:
Остальные нигде не играют, максимум в Фен сборках :upside_down_face:

Есть инфа когда покажут обновленные классик карты ?

У меня вопрос-предложение.

Можно ли сделать так, чтобы время таверны отведённое на обдумывание хода было одинаковым для каждого игрока?

Ситуация (как есть):
Допустим с момента начала раунда у игрока есть 100 секунд.
При игре на пиратах, или при наличии брана и нескольких раскопок многие абузят реконнект, чтобы пропустить анимацию боя и сразу покупать и разыгрывать существ.
Либо, (при некоторых условиях (пират+кадгар, или мехи,звери/хрипы)) анимация боя может и вовсе занимать столько времени, что на обдумывание следующего хода останется чуть ли не 10 секунд.

Что можно сделать?

  1. Добавить кнопку выхода из анимации боя
  2. Сделать лимит на длину хода в 100 секунд
    Например:
    14 ход, даётся 140 секунд, начинается бой
    Игрок может выйти сразу, или через 45 секунд
    В первом случае останется 100 секунд на ход, во втором 95

Предложение основано на желании сбалансировать игру, чтобы каждый игрок мог потратить столько времени на обдумывание следующего хода, сколько ему нужно, и чтобы это было возможно за счёт средств интерфейса самой игры, а не при помощи каких-то прочих манипуляций.

Лайков: 1

Эта тема для вопросов игроков и отвечают тоже игроки. Сотрудники Близзард её не читают. К тому же разработчиков нет на русскоязычном форуме.

Можно. Но это не сделают. Слишком сложно.

Где новостя- Что реплики 50 лвл портретов поменяли ?

Где-то среди форумных сообщений)))