mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 10:30:27 +00:00
fix(Scripts/SlavePens): Rewrite Ahune. (#19075)
* Add WPP SQL output. * Uncomment all entries. With one exception, one that does not exist in DB * Sort all by template entry. * Add reference names for templates. * Distinguish summons from static spawns. * Separate summons from static spawns in SQL parse. * Add timestamps and spell casts for creatures. * Init spawn query. * Init script stuff. * Init port work. Co-Authored-By: Gustavo <sirikfoll@hotmail.com> * Bad flag porting. * Update stand states and unit flags properly. * Adjust SQL. * Add birth spell. Properly shows the desired animation, to be verified through sniffs if he actually casts it. * Update Frozen Core model data. Collected from TC master branch. Will correct with proper data once sniff data becomes available. * Elaborate rhyme aura text functions. Co-Authored-By: sudlud <sudlud@users.noreply.github.com> * Adjust for structure changes. * Elaborate delete queries. --------- Co-authored-by: Gustavo <sirikfoll@hotmail.com> Co-authored-by: sudlud <sudlud@users.noreply.github.com>
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -30,8 +30,18 @@
|
||||
|
||||
ObjectData const creatureData[] =
|
||||
{
|
||||
{ NPC_QUAGMIRRAN, DATA_QUAGMIRRAN },
|
||||
{ 0, 0 }
|
||||
{ NPC_QUAGMIRRAN, DATA_QUAGMIRRAN },
|
||||
{ NPC_AHUNE, DATA_AHUNE },
|
||||
{ NPC_AHUNE_LOC_BUNNY, DATA_AHUNE_BUNNY },
|
||||
{ NPC_FROZEN_CORE, DATA_FROZEN_CORE },
|
||||
{ NPC_SHAMAN_BONFIRE_BUNNY_000, DATA_BONFIRE_BUNNY_000 },
|
||||
{ NPC_SHAMAN_BONFIRE_BUNNY_001, DATA_BONFIRE_BUNNY_001 },
|
||||
{ NPC_SHAMAN_BONFIRE_BUNNY_002, DATA_BONFIRE_BUNNY_002 },
|
||||
{ NPC_SHAMAN_BEAM_BUNNY_000, DATA_BEAM_BUNNY_000 },
|
||||
{ NPC_SHAMAN_BEAM_BUNNY_001, DATA_BEAM_BUNNY_001 },
|
||||
{ NPC_SHAMAN_BEAM_BUNNY_002, DATA_BEAM_BUNNY_002 },
|
||||
{ NPC_LUMA_SKYMOTHER, DATA_LUMA_SKYMOTHER },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
class instance_the_slave_pens : public InstanceMapScript
|
||||
|
||||
Reference in New Issue
Block a user