comparison Constants.lua @ 391:0da7fa3508b1

Automated including data from DELAYED_CONTAINER_SPELL_ID_TO_ITEM_ID_MAP in CONTAINER_ITEM_ID_LIST.
author MMOSimca <MMOSimca@gmail.com>
date Wed, 17 Dec 2014 12:23:09 -0500
parents 7086c27bdc9f
children f1952ed33a16
comparison
equal deleted inserted replaced
390:b00732fa9352 391:0da7fa3508b1
68 -- List of items that, when right-clicked, reward loot (includes items from DELAYED_CONTAINER_SPELL_ID_TO_ITEM_ID_MAP). 68 -- List of items that, when right-clicked, reward loot (includes items from DELAYED_CONTAINER_SPELL_ID_TO_ITEM_ID_MAP).
69 -- This means they -must- be tracked via CHAT_MSG_LOOT. 69 -- This means they -must- be tracked via CHAT_MSG_LOOT.
70 -- It also means there is a high margin for bad data since multiple bags can be clicked within a small time frame. 70 -- It also means there is a high margin for bad data since multiple bags can be clicked within a small time frame.
71 -- True = instant cast; false = cast time 71 -- True = instant cast; false = cast time
72 private.CONTAINER_ITEM_ID_LIST = { 72 private.CONTAINER_ITEM_ID_LIST = {
73 [114116] = false, -- Bag of Salvaged Goods
74 [114119] = false, -- Crate of Salvage
75 [114120] = false, -- Big Crate of Salvage
76 [116980] = true, -- Invader's Forgotten Treasure 73 [116980] = true, -- Invader's Forgotten Treasure
77 [120319] = true, -- Invader's Damaged Cache 74 [120319] = true, -- Invader's Damaged Cache
78 [120320] = true, -- Invader's Abandoned Sack 75 [120320] = true, -- Invader's Abandoned Sack
79 } 76 }
80 77 for key, value in next, private.DELAYED_CONTAINER_SPELL_ID_TO_ITEM_ID_MAP do
78 private.CONTAINER_ITEM_ID_LIST[value] = false
79 end
80
81 -- Mapping of Spell IDs for bonus roll confirmation prompts to raid bosses
82 -- In some cases this records only bonus loot, and in other cases this is needed for all loot.
81 private.RAID_BOSS_BONUS_SPELL_ID_TO_NPC_ID_MAP = { 83 private.RAID_BOSS_BONUS_SPELL_ID_TO_NPC_ID_MAP = {
82 ----------------------------------------------------------------------- 84 -----------------------------------------------------------------------
83 -- World Bosses 85 -- World Bosses
84 ----------------------------------------------------------------------- 86 -----------------------------------------------------------------------
85 [132205] = 60491, -- Sha of Anger Bonus (Sha of Anger) 87 [132205] = 60491, -- Sha of Anger Bonus (Sha of Anger)