Приветствуем вас на форуме проекта WoW Circle. Если вы читаете это, значит не зарегистрировались у нас. Для того, чтобы получить доступ к расширенным возможностям нашего форума нажмите сюда и пройди регистрацию, которая не займет у вас много времени. После регистрации будут доступны новые, более расширенные, возможности.
Тотем элементаля огня

Упомянутые в теме пользователи:

Страница 1 из 4 123 ... ПоследняяПоследняя
Показано с 1 по 12 из 46
  1. #1
    Наш человек
    Регистрация
    15.04.2012
    Сообщений
    822
    Поблагодарил(а)
    252
    Получено благодарностей: 155 (сообщений: 90).
    Репутация: 155

    Тотем элементаля огня

    1) Большой элементаль огня ( http://wowroad.info/?npc=15438 ), вызывемый с помощью тотема элементаля огня ( http://wowroad.info/?spell=32982 )
    2) Не идет автоматическое обновление спд от шамана в размере 50% к большому элементалю огня.
    3)

    На видео прекрасно видно, что шаман далеко не в бисе с тринями пером за лед и трубой с кораблей. При проке демонического союза (который кстати говоря тоже должен автоматически обновлять спд на рейде при тех же проках тринь, кольца и прочего у лока), либо при прожиме пера в данном случае, атака ближнего боя у большого элементаля огня скачет взависимости от спд на шамане в реальном времени. Ну и крит вылетевший на 1:33 минуте в 7.5к у нас даже не увидеть в бисе с проками тбла и чешуи вместе взятых.
    4) 18.03.2014 logon1 x300
    5) Проблема существовала всегда.
    6) 10/10 в пве, главный дамажащий тотем у элемов не работает.
    7)

    Из рекаунта также отчетливо видно, что дамаг элементаля смешной и практически не меняется на протяжении всего боя.
    Если нужен будет фрапс, то сделаю в свободное время.
    Последний раз редактировалось DreamlØlz; 14.07.2015 в 03:50.

  2. 2 пользователей сказали cпасибо rating за это полезное сообщение:

    Generalfresh (27.07.2014),pavvvel (19.12.2014)

  3. #2
    Местный
    Регистрация
    27.10.2012
    Сообщений
    41
    Поблагодарил(а)
    8
    Получено благодарностей: 22 (сообщений: 12).
    Репутация: 22
    Странно, что никто до сих пор не отписал в этой теме. Конечно, элементаль огня - это главный дамажащий тотем огня как энха, так и элема и у нас он работает некорректно.
    Я давно собираюсь написать репорт по его работоспособности, но все никак не доходят руки, да и собранной информации, думаю, недостаточно. Ну все же выложу тут то что я накопал.


    Информация об уроне элементаля (вырезка из движка Simcraft 335-1)

    // ================================================== ========================
    // Pet Fire Elemental
    // ================================================== ========================

    struct fire_elemental_pet_t : public pet_t
    {
    struct travel_t : public action_t
    {
    travel_t( player_t* player ) : action_t( ACTION_OTHER, "travel", player ) {}
    virtual void execute() { player -> distance = 1; }
    virtual double execute_time() SC_CONST { return ( player -> distance / 10.0 ); }
    virtual bool ready() { return ( player -> distance > 1 ); }
    };

    struct fire_shield_t : public spell_t
    {
    fire_shield_t( player_t* player ) :
    spell_t( "fire_shield", player, RESOURCE_MANA, SCHOOL_FIRE )
    {
    aoe = true;
    background = true;
    repeating = true;
    may_crit = true;
    base_execute_time = 3.0;
    base_dd_min = base_dd_max = 96;
    direct_power_mod = 0.015;

    id = 12470;
    };
    virtual double total_multiplier() SC_CONST { return ( player -> distance > 1 ) ? 0.0 : spell_t::total_multiplier(); }
    };

    struct fire_nova_t : public spell_t
    {
    fire_nova_t( player_t* player ) :
    spell_t( "fire_nova", player, RESOURCE_MANA, SCHOOL_FIRE )
    {
    aoe = true;
    may_crit = true;
    base_cost = 207;
    base_execute_time = 2.5; // Really 2.0sec, but there appears to be a 0.5sec lag following.
    base_dd_min = 960;
    base_dd_max = 1000;
    direct_power_mod = 0.50;
    };
    };

    struct fire_blast_t : public spell_t
    {
    fire_blast_t( player_t* player ) :
    spell_t( "fire_blast", player, RESOURCE_MANA, SCHOOL_FIRE )
    {
    may_crit = true;
    base_cost = 276;
    base_execute_time = 0;
    base_dd_min = 750;
    base_dd_max = 800;
    direct_power_mod = 0.20;
    cooldown -> duration = 4.0;

    id = 57984;
    };
    };

    struct fire_melee_t : public attack_t
    {
    fire_melee_t( player_t* player ) :
    attack_t( "fire_melee", player, RESOURCE_NONE, SCHOOL_FIRE )
    {
    may_crit = true;
    base_dd_min = base_dd_max = 180;
    base_execute_time = 2.0;
    direct_power_mod = 1.0;
    base_spell_power_multiplier = 0.60;
    base_attack_power_multiplier = base_execute_time / 14;
    }
    };

    spell_t* fire_shield;

    fire_elemental_pet_t( sim_t* sim, player_t* owner ) : pet_t( sim, owner, "fire_elemental", true /*GUARDIAN*/ ) {}

    virtual void init_base()
    {
    pet_t::init_base();

    resource_base[ RESOURCE_HEALTH ] = 0; // FIXME!!
    resource_base[ RESOURCE_MANA ] = 4000;

    health_per_stamina = 10;
    mana_per_intellect = 15;

    // Modeling melee as a foreground action since a loose model is Nova-Blast-Melee-repeat.
    // The actual actions are not really so deterministic, but if you look at the entire spawn time,
    // you will see that there is a 1-to-1-to-1 distribution (provided there is sufficient mana).

    action_list_str = "travel/sequence,name=attack:fire_nova:fire_blast:fire_mel ee/restart_sequence,name=attack,moving=0";

    fire_shield = new fire_shield_t( this );
    }

    virtual int primary_resource() SC_CONST { return RESOURCE_MANA; }

    virtual void regen( double periodicity )
    {
    if ( ! recent_cast() )
    {
    resource_gain( RESOURCE_MANA, 10.66 * periodicity ); // FIXME! Does regen scale with gear???
    }
    }

    virtual void summon( double duration=0 )
    {
    pet_t::summon();
    fire_shield -> execute();
    }

    virtual double composite_attack_power() SC_CONST
    {
    return owner -> composite_attack_power_multiplier() * owner -> composite_attack_power();
    }

    virtual double composite_spell_power( int school ) SC_CONST
    {
    return owner -> composite_spell_power_multiplier() * owner -> composite_spell_power( school );
    }

    virtual action_t* create_action( const std::string& name,
    const std::string& options_str )
    {
    if ( name == "travel" ) return new travel_t ( this );
    if ( name == "fire_nova" ) return new fire_nova_t ( this );
    if ( name == "fire_blast" ) return new fire_blast_t ( this );
    if ( name == "fire_melee" ) return new fire_melee_t ( this );

    return pet_t::create_action( name, options_str );
    }
    };
    [свернуть]

    -
    [SPOILER=Скрины урона элементаля у нас]
    +

    Скрины урона элементаля у нас










    [свернуть]

    Из скринов видно, что базовый урон и скалирование урона от спд и ап(в случае автоатаки) элема не соответствуют. К тому же урон автоатаки у нас считается физическим уроном (видно по комбат логу на скринах) и режится броней цели, хотя урон должен быть от сил огня (указано в симкрафте и есть подтверждение этому в нете):
    http://totemz.wordpress.com/2010/01/29/fire-totems/
    His standard melee attack is fire based and thus unaffected by any melee damage reducing debuffs
    Не нашел подробной инфы по поводу тайминга применения спелов (по просмотренным видео не понятно, т.к. тайминги применения кольца огня и огненного взрыва постоянно разные, но в любом случае чаще чем у нас).
    Последний раз редактировалось DreamlØlz; 14.07.2015 в 03:50.

  4. 3 пользователей сказали cпасибо Ahues за это полезное сообщение:

    ciklopper (08.04.2014),Generalfresh (27.07.2014),rating (08.04.2014)

  5. #3
    Дедушка форума Аватар для ciklopper
    Регистрация
    12.01.2012
    Адрес
    SPb
    Сообщений
    6,448
    Поблагодарил(а)
    669
    Получено благодарностей: 1,529 (сообщений: 894).
    Репутация: 2664
    Ahues, я думаю ты и сам заметил, что по данному тотему и самому эллему инфы очень мало.. Но, если ты можешь, то хотя бы по той информации, что у тебя уже есть напиши репорт. Энхи уже забыли, что элем вообще дмжит, и в пве будет хоть, какой то оп.

    - - - Updated - - -

    Если напишешь, постараюсь найти комбат лог, разобрать его и подтвердить твою информацию. Или, если хочешь начни писать в мастерской, мб кто подкинет инфы.
    Последний раз редактировалось DreamlØlz; 14.07.2015 в 03:50.
    Мой канал: https://www.youtube.com/c/CiklopperPlay
    Есть вопросы по игровой механике, подозрение на баг? Тогда тебе сюда Мастерская.

    Циклоппер x300 Ршам

    Этот мир спасёт шаман танк!

  6. #4
    Старожил Аватар для Rhn
    Регистрация
    20.08.2012
    Сообщений
    157
    Поблагодарил(а)
    6
    Получено благодарностей: 27 (сообщений: 17).
    Репутация: 27
    у элементаля либо статы не такие как надо (пример локовская собака), либо баф цлк не действует на атаки элементаля.

  7. #5
    Дедушка форума Аватар для Ramusik
    Регистрация
    05.01.2012
    Сообщений
    5,718
    Поблагодарил(а)
    34
    Получено благодарностей: 1,744 (сообщений: 761).
    Репутация: 1994
    Откуда взята информация о 50% от спд шамана?

  8. #6
    Наш человек
    Регистрация
    15.04.2012
    Сообщений
    822
    Поблагодарил(а)
    252
    Получено благодарностей: 155 (сообщений: 90).
    Репутация: 155
    -
    Цитата Сообщение от Ramusik Посмотреть сообщение
    Откуда взята информация о 50% от спд шамана?
    Поскольку с лича информации о нем нет, предположительно взял первое обновление с каты, косательно самого элема ( http://www.wowwiki.com/Fire_Elemental_Totem ) :

    Fire Elemental now benefits from 55% of its master's spell power, up from 50%.

    По поводу тайминга шилда и новы описано в ссылке, которую предоставил Ahues . ( http://totemz.wordpress.com/2010/01/29/fire-totems/ )

    He has a fire shield pulsing approximately every three seconds and a fire nova cast around every seven seconds hitting all targets within his range.
    Последний раз редактировалось DreamlØlz; 14.07.2015 в 03:50.

  9. 1 пользователь сказал cпасибо rating за это полезное сообщение:

    ciklopper (17.04.2014)

  10. #7
    Дедушка форума Аватар для ciklopper
    Регистрация
    12.01.2012
    Адрес
    SPb
    Сообщений
    6,448
    Поблагодарил(а)
    669
    Получено благодарностей: 1,529 (сообщений: 894).
    Репутация: 2664
    Цитата Сообщение от Ты что курил? Посмотреть сообщение
    А если взять например рассчет урона собаки лока на той же кате , то укус тьмы у нее должен дамажить около 2000 без уреза ресом, так что не зарекаемся
    А у нас 200-500 по ресовым чувакам
    А причем утут урон на кате и на вотлке? В катовскоом пачноте сказано:
    Что теперь спд переходящее элементу огня повышенно с 50% до 55%. Что означает, что на Вотлке было 50%.
    Мой канал: https://www.youtube.com/c/CiklopperPlay
    Есть вопросы по игровой механике, подозрение на баг? Тогда тебе сюда Мастерская.

    Циклоппер x300 Ршам

    Этот мир спасёт шаман танк!

  11. 1 пользователь сказал cпасибо ciklopper за это полезное сообщение:

    Generalfresh (27.07.2014)

  12. #8
    Старожил Аватар для Rhn
    Регистрация
    20.08.2012
    Сообщений
    157
    Поблагодарил(а)
    6
    Получено благодарностей: 27 (сообщений: 17).
    Репутация: 27
    Цитата Сообщение от ciklopper Посмотреть сообщение
    А причем утут урон на кате и на вотлке? В катовскоом пачноте сказано:
    Что теперь спд переходящее элементу огня повышенно с 50% до 55%. Что означает, что на Вотлке было 50%.
    http://www.youtube.com/watch?v=5CPf996g8DE

    тут урон есть, спек, таланты, статы. Элементаль у нас так бьет в цлк с 30% баффом по 2к, а тут на манекене
    Последний раз редактировалось Rhn; 24.05.2014 в 15:39.

  13. 2 пользователей сказали cпасибо Rhn за это полезное сообщение:

    ciklopper (24.05.2014),SinteziS (24.05.2014)

  14. #9
    Новичок Аватар для Komatsu
    Регистрация
    16.05.2014
    Сообщений
    15
    Поблагодарил(а)
    0
    Получено благодарностей: 2 (сообщений: 2).
    Репутация: 2
    АП! Пересчитайте наконец урон элементаля. Если видео Rhn с оффы, то тут сразу видно наш заниженный урон. У нас огненный бьет меньше даже если ты в BIS экипе. Если пофиксят элементаля, то элемы начнут давать дпс.

  15. #10
    Дедушка форума Аватар для ciklopper
    Регистрация
    12.01.2012
    Адрес
    SPb
    Сообщений
    6,448
    Поблагодарил(а)
    669
    Получено благодарностей: 1,529 (сообщений: 894).
    Репутация: 2664
    Цитата Сообщение от Mighty 90 Посмотреть сообщение
    там фиг что найдешь с времен лича
    Подпись мою прочти..

    - - - Updated - - -

    Эх, в общем лог не из цлк, а внезапно из РС..
    http://worldoflogs.com/reports/rt-5r2djkv6njfyt94p/log/
    [{"spellNames": ["Fire Elemental Totem"]}, {"actorNames": ["Fire Elemental Totem"]}, {"actorNames": ["Greater Fire Elemental"]}]

    Самый большой кусок

    Код:
    [19:22:36.968] Fire Elemental Totem summons Greater Fire Elemental with Fire Elemental Totem
    [19:22:37.343] Greater Fire Elemental hits Halion 3296
    [19:22:37.967] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:22:38.310] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:22:38.809] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:22:39.390] Greater Fire Elemental hits Halion 3311
    [19:22:39.390] Greater Fire Elemental begins to cast Fire Nova
    [19:22:39.901] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:22:40.369] Greater Fire Elemental afflicted by Tail Lash from Halion
    [19:22:40.400] Greater Fire Elemental Fire Shield Halion 155 (R: 34)
    [19:22:40.400] Halion Tail Lash Greater Fire Elemental 182
    [19:22:40.868] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:22:42.335] Halion's Tail Lash fades from Greater Fire Elemental
    [19:22:42.553] Greater Fire Elemental hits Halion 3302
    [19:22:42.553] Greater Fire Elemental casts Fire Blast on Halion
    [19:22:42.553] Greater Fire Elemental begins to cast Fire Nova
    [19:22:42.818] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:22:42.818] Greater Fire Elemental Fire Blast Halion 1993
    [19:22:43.255] Alaunus Judgement of Light Greater Fire Elemental +385
    [19:22:43.623] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:22:43.623] Greater Fire Elemental Fire Shield Halion 155 (R: 34)
    [19:22:44.784] Halion Dusk Shroud Greater Fire Elemental 600
    [19:22:44.784] Greater Fire Elemental Fire Nova Halion 3365 (R: 331)
    [19:22:45.723] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:22:46.156] Greater Fire Elemental casts Fire Blast on Halion
    [19:22:46.423] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:22:46.423] Greater Fire Elemental Fire Blast Halion 1558 (R: 345)
    [19:22:46.671] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:22:47.800] Greater Fire Elemental begins to cast Fire Nova
    [19:22:48.795] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:22:49.281] Greater Fire Elemental Fire Shield Halion 195
    [19:22:50.025] Greater Fire Elemental Fire Nova Halion 3658
    [19:22:50.758] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:22:51.788] Greater Fire Elemental hits Halion 3313
    [19:22:51.804] Greater Fire Elemental casts Fire Blast on Halion
    [19:22:51.928] Greater Fire Elemental Fire Blast Halion *3022*
    [19:22:52.424] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:22:52.424] Vexryn Judgement of Light Greater Fire Elemental +386
    [19:22:52.429] Greater Fire Elemental Fire Shield Halion 195
    [19:22:52.724] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:22:52.724] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:22:53.810] Greater Fire Elemental hits Halion 2964 (R: 291)
    [19:22:54.769] Greater Fire Elemental afflicted by Tail Lash from Halion
    [19:22:54.864] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:22:54.864] Halion Tail Lash Greater Fire Elemental 185
    [19:22:55.251] Greater Fire Elemental Fire Shield Halion 155 (R: 34)
    [19:22:56.779] Halion's Tail Lash fades from Greater Fire Elemental
    [19:22:56.889] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:22:56.982] Greater Fire Elemental crits Halion *6595*
    [19:22:57.731] Vexryn Judgement of Light Greater Fire Elemental +386
    [19:22:58.371] Greater Fire Elemental Fire Shield Halion 195
    [19:22:58.927] Halion Dusk Shroud Greater Fire Elemental 600
    [19:22:59.166] Greater Fire Elemental hits Halion 3312
    [19:22:59.808] Greater Fire Elemental casts Fire Blast on Halion
    [19:23:00.211] Greater Fire Elemental Fire Blast Halion 1993
    [19:23:00.976] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:01.386] Greater Fire Elemental Fire Shield Halion 195
    [19:23:01.849] Greater Fire Elemental hits Halion 3298
    [19:23:02.474] Alaunus Judgement of Light Greater Fire Elemental +385
    [19:23:02.899] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:23:03.316] Kirabo Echoes of Light Greater Fire Elemental +5075 (O: 1655)
    [19:23:03.830] Greater Fire Elemental hits Halion 3310
    [19:23:04.392] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:23:04.844] Halion Dusk Shroud Greater Fire Elemental 600
    [19:23:05.877] Greater Fire Elemental hits Halion 3314
    [19:23:06.872] Greater Fire Elemental gains 88 mana from Drapo's Judgement of Wisdom
    [19:23:06.872] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:07.200] Greater Fire Elemental Fire Shield Halion 195
    [19:23:07.569] Greater Fire Elemental afflicted by Tail Lash from Halion
    [19:23:07.652] Halion Tail Lash Greater Fire Elemental 155
    [19:23:08.931] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:09.605] Halion's Tail Lash fades from Greater Fire Elemental
    [19:23:09.836] Greater Fire Elemental hits Halion 2506
    [19:23:10.382] Vexryn Judgement of Light Greater Fire Elemental +386
    [19:23:10.382] Greater Fire Elemental Fire Shield Halion 195
    [19:23:10.928] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:23:11.869] Greater Fire Elemental hits Halion 2385
    [19:23:11.880] Greater Fire Elemental casts Fire Blast on Halion
    [19:23:12.020] Greater Fire Elemental Fire Blast Halion 2044
    [19:23:12.898] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:23:12.909] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:13.393] Greater Fire Elemental Fire Shield Halion 195
    [19:23:13.884] Greater Fire Elemental hits Halion 2746
    [19:23:14.563] Alaunus Judgement of Light Greater Fire Elemental +386
    [19:23:14.912] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:23:14.921] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:15.842] Greater Fire Elemental hits Halion 3315
    [19:23:16.497] Vexryn Judgement of Light Greater Fire Elemental +386
    [19:23:16.497] Greater Fire Elemental Fire Shield Halion 195
    [19:23:16.938] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:23:17.839] Greater Fire Elemental hits Halion 3305
    [19:23:18.244] Greater Fire Elemental casts Fire Blast on Halion
    [19:23:18.556] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:18.556] Greater Fire Elemental Fire Blast Halion *2944*
    [19:23:19.058] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:19.058] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:19.339] Greater Fire Elemental Fire Shield Halion 195
    [19:23:19.635] Xorba Circle of Healing Greater Fire Elemental +*2487* (O: 3295)
    [19:23:20.303] Greater Fire Elemental gains Inspiration from Xorba
    [19:23:20.412] Greater Fire Elemental hits Halion 3313
    [19:23:21.039] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:21.067] Greater Fire Elemental begins to cast Fire Nova
    [19:23:22.425] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:23:22.939] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:23.696] Greater Fire Elemental Fire Nova Halion 3695
    [19:23:24.033] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:24.433] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:23:24.907] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:25.232] Greater Fire Elemental hits Halion 3298
    [19:23:25.377] Greater Fire Elemental Fire Shield Halion 155 (R: 34)
    [19:23:25.513] Greater Fire Elemental casts Fire Blast on Halion
    [19:23:25.881] Greater Fire Elemental Fire Blast Halion 1540 (R: 341)
    [19:23:26.012] Vexryn Judgement of Light Greater Fire Elemental +386
    [19:23:26.012] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:26.998] Halion Dusk Shroud Greater Fire Elemental 600
    [19:23:27.089] Greater Fire Elemental begins to cast Fire Nova
    [19:23:28.477] Greater Fire Elemental Fire Shield Halion 195
    [19:23:28.964] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:23:29.761] Greater Fire Elemental Fire Nova Halion 3754
    [19:23:30.162] Alaunus Judgement of Light Greater Fire Elemental +385
    [19:23:30.605] Greater Fire Elemental gains 87 mana from Drapo's Judgement of Wisdom
    [19:23:30.712] Greater Fire Elemental casts Fire Blast on Halion
    [19:23:30.879] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:30.879] Greater Fire Elemental Fire Blast Halion 1733 (R: 170)
    [19:23:31.269] Greater Fire Elemental Fire Shield Halion 195
    [19:23:32.720] Greater Fire Elemental hits Halion 2973 (R: 292)
    [19:23:32.972] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:23:33.266] Alaunus Judgement of Light Greater Fire Elemental +385
    [19:23:33.707] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:23:34.222] Greater Fire Elemental afflicted by Tail Lash from Halion
    [19:23:34.249] Halion Tail Lash Greater Fire Elemental 155
    [19:23:34.498] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:23:34.889] Halion Dusk Shroud Greater Fire Elemental 600
    [19:23:35.409] Xorba's Inspiration fades from Greater Fire Elemental
    [19:23:36.092] Halion's Tail Lash fades from Greater Fire Elemental
    [19:23:36.355] Greater Fire Elemental hits Halion 2638 (R: 584)
    [19:23:36.355] Greater Fire Elemental casts Fire Blast on Halion
    [19:23:36.355] Greater Fire Elemental begins to cast Fire Nova
    [19:23:36.526] Greater Fire Elemental Fire Blast Halion 1971
    [19:23:36.981] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:36.981] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:37.306] Greater Fire Elemental Fire Shield Halion *233* (R: 34)
    [19:23:38.991] Greater Fire Elemental Fire Nova Halion 3687
    [19:23:38.991] Halion Dusk Shroud Greater Fire Elemental 600
    [19:23:39.506] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:40.442] Greater Fire Elemental hits Halion 2651 (R: 587)
    [19:23:40.442] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:23:40.956] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:41.300] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:41.538] Greater Fire Elemental casts Fire Blast on Halion
    [19:23:41.783] Greater Fire Elemental Fire Blast Halion 1926
    [19:23:42.335] Greater Fire Elemental begins to cast Fire Nova
    [19:23:43.038] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:23:43.468] Greater Fire Elemental Fire Shield Halion *233* (R: 34)
    [19:23:45.043] Greater Fire Elemental Fire Nova Halion 2967 (R: 657)
    [19:23:45.059] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:23:45.805] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:23:45.951] Greater Fire Elemental casts Fire Blast on Halion
    [19:23:46.301] Greater Fire Elemental Fire Blast Halion 1599 (R: 354)
    [19:23:46.510] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:46.526] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:23:47.136] Halion Dusk Shroud Greater Fire Elemental 600
    [19:23:47.930] Greater Fire Elemental hits Halion 2970 (R: 292)
    [19:23:48.491] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:48.758] Greater Fire Elemental begins to cast Fire Nova
    [19:23:48.787] Greater Fire Elemental gains 87 mana from Drapo's Judgement of Wisdom
    [19:23:49.038] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:49.255] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:23:51.174] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:51.190] Greater Fire Elemental Fire Nova Halion *4451* (R: 657)
    [19:23:51.362] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:52.585] Greater Fire Elemental Fire Shield Halion *262* (R: 17)
    [19:23:52.734] Greater Fire Elemental hits Halion 3310
    [19:23:53.077] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:53.358] Vexryn Judgement of Light Greater Fire Elemental +386
    [19:23:53.692] Greater Fire Elemental gains 87 mana from Kreuzritter's Judgement of Wisdom
    [19:23:53.985] Greater Fire Elemental casts Fire Blast on Halion
    [19:23:54.309] Greater Fire Elemental Fire Blast Halion 2000
    [19:23:55.081] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:23:55.246] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:23:55.978] Greater Fire Elemental hits Halion 2964 (R: 291)
    [19:23:57.121] Greater Fire Elemental gains 88 mana from Drapo's Judgement of Wisdom
    [19:23:57.121] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:23:58.006] Greater Fire Elemental hits Halion 3307
    [19:23:58.162] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:23:58.588] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:23:59.005] Halion Dusk Shroud Greater Fire Elemental 600
    [19:23:59.975] Greater Fire Elemental hits Halion 2977 (R: 293)
    [19:24:00.097] Greater Fire Elemental afflicted by Tail Lash from Halion
    [19:24:00.221] Halion Tail Lash Greater Fire Elemental 168
    [19:24:01.001] Halion Dusk Shroud Greater Fire Elemental 600
    [19:24:01.396] Greater Fire Elemental Fire Shield Halion 195
    [19:24:02.171] Halion's Tail Lash fades from Greater Fire Elemental
    [19:24:02.265] Greater Fire Elemental crits Halion *6637*
    [19:24:02.265] Greater Fire Elemental casts Fire Blast on Halion
    [19:24:02.717] Greater Fire Elemental Fire Blast Halion 1919
    [19:24:02.734] Halion Dusk Shroud Greater Fire Elemental 600
    [19:24:03.096] Alaunus Judgement of Light Greater Fire Elemental +385
    [19:24:03.096] Alaunus Judgement of Light Greater Fire Elemental +385
    [19:24:03.248] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:24:04.324] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:24:04.435] Greater Fire Elemental hits Halion 3304
    [19:24:04.605] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:24:05.354] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:24:06.192] Greater Fire Elemental gains Rejuvenation from Kirabo
    [19:24:06.305] Greater Fire Elemental hits Halion 2346 (R: 293)
    [19:24:06.742] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:24:07.038] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:24:07.475] Greater Fire Elemental Fire Shield Halion 155 (R: 34)
    [19:24:07.912] Kirabo Rejuvenation Greater Fire Elemental +3168
    [19:24:08.333] Greater Fire Elemental hits Halion 3313
    [19:24:08.598] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:24:09.349] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:24:09.587] Kirabo's Rejuvenation fades from Greater Fire Elemental
    [19:24:44.237] Fire Elemental Totem summons Greater Fire Elemental with Fire Elemental Totem
    [19:24:44.237] Greater Fire Elemental hits Halion Miss
    [19:24:44.633] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:24:46.114] Greater Fire Elemental hits Halion 2026
    [19:24:46.568] Vexryn Judgement of Light Greater Fire Elemental +0 (O: 374)
    [19:24:46.586] Halion Dusk Shroud Greater Fire Elemental 600
    [19:24:46.997] Greater Fire Elemental casts Fire Blast on Halion
    [19:24:47.145] Greater Fire Elemental Fire Blast Halion 1226 (R: 271)
    [19:24:47.394] Greater Fire Elemental afflicted by Tail Lash from Halion
    [19:24:47.394] Halion Tail Lash Greater Fire Elemental 192
    [19:24:47.784] Greater Fire Elemental Fire Shield Halion 124 (R: 28)
    [19:24:48.610] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:24:49.442] Halion's Tail Lash fades from Greater Fire Elemental
    [19:24:49.827] Greater Fire Elemental hits Halion 2038
    [19:24:49.827] Greater Fire Elemental begins to cast Fire Nova
    [19:24:49.859] Greater Fire Elemental gains Wild Growth from Kirabo
    [19:24:50.219] Vexryn Judgement of Light Greater Fire Elemental +375
    [19:24:50.592] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:24:50.810] Greater Fire Elemental Fire Shield Halion 140 (R: 14)
    [19:24:50.825] Kirabo Wild Growth Greater Fire Elemental +1013
    [19:24:51.091] Greater Fire Elemental gains 82 mana from Greater Fire Elemental's Revitalize
    [19:24:51.856] Kirabo Wild Growth Greater Fire Elemental +484 (O: 505)
    [19:24:52.058] Greater Fire Elemental Fire Nova Halion *3628* (R: 238)
    [19:24:52.200] Vexryn Judgement of Light Greater Fire Elemental +0 (O: 375)
    [19:24:52.650] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:24:52.838] Kirabo Wild Growth Greater Fire Elemental +540 (O: 424)
    [19:24:53.337] Greater Fire Elemental casts Fire Blast on Halion
    [19:24:53.653] Greater Fire Elemental Fire Shield Halion 156
    [19:24:53.665] Greater Fire Elemental Fire Blast Halion 1519
    [19:24:53.759] Vexryn Judgement of Light Greater Fire Elemental +0 (O: 375)
    [19:24:53.838] Kirabo Wild Growth Greater Fire Elemental +0 (O: 939)
    [19:24:54.663] Halion Dusk Shroud Greater Fire Elemental 600
    [19:24:54.834] Kirabo Wild Growth Greater Fire Elemental +600 (O: 315)
    [19:24:55.365] Greater Fire Elemental hits Halion 2041
    [19:24:55.771] Kirabo Wild Growth Greater Fire Elemental +0 (O: 890)
    [19:24:56.347] Greater Fire Elemental Fire Shield Halion 140 (R: 14)
    [19:24:56.621] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:24:56.762] Kirabo Wild Growth Greater Fire Elemental +540 (O: 325)
    [19:24:56.762] Kirabo's Wild Growth fades from Greater Fire Elemental
    [19:24:56.925] Greater Fire Elemental casts Fire Blast on Halion
    [19:24:57.128] Greater Fire Elemental Fire Blast Halion 1153 (R: 255)
    [19:24:57.456] Greater Fire Elemental begins to cast Fire Nova
    [19:24:58.672] Halion Dusk Shroud Greater Fire Elemental 621 (R: 690)
    [19:24:59.596] Greater Fire Elemental Fire Shield Halion 187
    [19:24:59.596] Greater Fire Elemental Fire Nova Halion 3200
    [19:24:59.842] Vexryn Judgement of Light Greater Fire Elemental +374
    [19:25:00.154] Greater Fire Elemental gains 88 mana from Drapo's Judgement of Wisdom
    [19:25:00.654] Halion Dusk Shroud Greater Fire Elemental 690
    [19:25:01.379] Greater Fire Elemental hits Halion 2436
    [19:25:02.182] Greater Fire Elemental casts Fire Blast on Halion
    [19:25:02.482] Greater Fire Elemental Fire Shield Halion 188
    [19:25:02.493] Greater Fire Elemental Fire Blast Halion 1722
    [19:25:02.635] Halion Dusk Shroud Greater Fire Elemental 552 (R: 1380)
    [19:25:02.712] Greater Fire Elemental afflicted by Tail Lash from Halion
    [19:25:02.712] Halion Tail Lash Greater Fire Elemental 195
    [19:25:04.677] Halion Dusk Shroud Greater Fire Elemental 690
    [19:25:04.693] Halion's Tail Lash fades from Greater Fire Elemental
    [19:25:04.693] Greater Fire Elemental hits Halion 2189 (R: 179)
    [19:25:05.786] Greater Fire Elemental Fire Shield Halion 168 (R: 14)
    [19:25:05.820] Greater Fire Elemental gains 88 mana from Drapo's Judgement of Wisdom
    [свернуть]

    1) Greater Fire Elemental hits Halion 2189 (R: 179) - видно, что автоатаки пэта являются действительной магическими, как и говорилось выше. Т.е. пэт бьёт не физикой, а огнём.
    2) Каждые 3 секунды элем может наносит урон Fire Shield.
    3) Скорость авто атка пэта, как и у всех 2 секунды:
    Код:
    [19:24:04.435] Greater Fire Elemental hits Halion 3304
    [19:24:04.605] Halion Dusk Shroud Greater Fire Elemental 540 (R: 600)
    [19:24:05.354] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:24:06.192] Greater Fire Elemental gains Rejuvenation from Kirabo
    [19:24:06.305] Greater Fire Elemental hits Halion 2346 (R: 293)
    [19:24:06.742] Halion Dusk Shroud Greater Fire Elemental 480 (R: 1200)
    [19:24:07.038] Vexryn Judgement of Light Greater Fire Elemental +385
    [19:24:07.475] Greater Fire Elemental Fire Shield Halion 155 (R: 34)
    [19:24:07.912] Kirabo Rejuvenation Greater Fire Elemental +3168
    [19:24:08.333] Greater Fire Elemental hits Halion 3313
    4) Если элем кастует Fire Blast таймер свинг атак не спадает(собственно, как при пременение любого спэлла который не надо кастовать).
    Код:
    [19:23:59.975] Greater Fire Elemental hits Halion 2977 (R: 293)
    [19:24:00.097] Greater Fire Elemental afflicted by Tail Lash from Halion
    [19:24:00.221] Halion Tail Lash Greater Fire Elemental 168
    [19:24:01.001] Halion Dusk Shroud Greater Fire Elemental 600
    [19:24:01.396] Greater Fire Elemental Fire Shield Halion 195
    [19:24:02.171] Halion's Tail Lash fades from Greater Fire Elemental
    [19:24:02.265] Greater Fire Elemental crits Halion *6637*
    [19:24:02.265] Greater Fire Elemental casts Fire Blast on Halion
    [19:24:02.717] Greater Fire Elemental Fire Blast Halion 1919
    [19:24:02.734] Halion Dusk Shroud Greater Fire Elemental 600
    [19:24:03.096] Alaunus Judgement of Light Greater Fire Elemental +385
    [19:24:03.096] Alaunus Judgement of Light Greater Fire Elemental +385
    [19:24:03.248] Greater Fire Elemental gains 88 mana from Kreuzritter's Judgement of Wisdom
    [19:24:04.324] Greater Fire Elemental Fire Shield Halion 175 (R: 17)
    [19:24:04.435] Greater Fire Elemental hits Halion 3304
    Последний раз редактировалось DreamlØlz; 14.07.2015 в 03:51.
    Мой канал: https://www.youtube.com/c/CiklopperPlay
    Есть вопросы по игровой механике, подозрение на баг? Тогда тебе сюда Мастерская.

    Циклоппер x300 Ршам

    Этот мир спасёт шаман танк!

  16. #11
    Старожил
    Регистрация
    27.02.2012
    Сообщений
    198
    Поблагодарил(а)
    15
    Получено благодарностей: 39 (сообщений: 21).
    Репутация: 35
    у нас же элементаль криутет на 2 к. Вот нашел чето с тухлика 10 об http://www.worldoflogs.com/reports/k...?s=4229&e=4444

  17. #12
    Дедушка форума Аватар для ciklopper
    Регистрация
    12.01.2012
    Адрес
    SPb
    Сообщений
    6,448
    Поблагодарил(а)
    669
    Получено благодарностей: 1,529 (сообщений: 894).
    Репутация: 2664
    Цитата Сообщение от Mighty 90 Посмотреть сообщение
    у нас же элементаль криутет на 2 к. Вот нашел чето с тухлика 10 об http://www.worldoflogs.com/reports/k...?s=4229&e=4444
    [19:24:02.265] Greater Fire Elemental crits Halion *6637*
    И это без бафа ЦЛК =)
    Мой канал: https://www.youtube.com/c/CiklopperPlay
    Есть вопросы по игровой механике, подозрение на баг? Тогда тебе сюда Мастерская.

    Циклоппер x300 Ршам

    Этот мир спасёт шаман танк!

Страница 1 из 4 123 ... ПоследняяПоследняя

Похожие темы

  1. Тотем элементаля огня (дубль два)
    от Energer в разделе Исправлено Cataclysm
    Ответов: 1
    Последнее сообщение: 21.08.2013, 18:08
  2. Тотем элементаля огня
    от Zol в разделе Исправлено Cataclysm
    Ответов: 2
    Последнее сообщение: 11.04.2013, 14:31

Ваши права

  • Вы не можете создавать новые темы
  • Вы не можете отвечать в темах
  • Вы не можете прикреплять вложения
  • Вы не можете редактировать свои сообщения
  •