1) http://wowroad.info/?spell=44549
2) http://wowroad.info/?spell=44549 прокает от http://wowroad.info/?spell=47610.
3) http://wowroad.info/?spell=44549 не должно прокать от http://wowroad.info/?spell=47610
4) http://wowwiki.wikia.com/wiki/Brain_Freeze
http://eu.battle.net/wow/en/game/patch-notes/3-3-3
Brain Freeze: This talent now allows your next Fireball or Frostfire Bolt to be instant and cost no mana. There is a small internal cooldown to keep the Frostfire Bolt from immediately triggering Brain Freeze again.
В патчноуте говориться про кд, но во время тестов на птр выяснилось что это не избавляет от бага, поэтому несмотря на такой анонс близы просто убрали прок от инстант ффб.
http://forums.elitistjerks.com/forum...dium-333-live/
Brain Freeze makes Frostfire Bolt instant as well now, and removes the mana cost of the instant FB/FFB. Small cooldown added to prevent proc chains of instant FFBs.
Frostfire Bolt does not trigger Brain Freeze any more in order to prevent chain procs, due to technical issues with the cooldown.
http://forums.elitistjerks.com/forum...omment-1563381
There seems to have been a hotfix to Brain Freeze: it can no longer proc from Frostfire Bolt under any circumstances. I guess the intended ICD wasn't work (as many players discovered on the PTR) and lucky chain Brain Freeze procs were too much for PvP.
Вырезка из симкрафта
Код:
// trigger_brain_freeze ===========================================================
static void trigger_brain_freeze( spell_t* s )
{
if ( s -> school != SCHOOL_FROST &&
s -> school != SCHOOL_FROSTFIRE ) return;
// Game hotfixed so that Frostfire Bolt cannot proc Brain Freeze.
if ( s -> name_str == "frostfire_bolt" ) return;
mage_t* p = s -> player -> cast_mage();
p -> buffs_brain_freeze -> trigger();
}