comparison data.lua @ 8:17844b0b88c1

Finish disabling the reagent's reagent tooltip, and fill some data about prospection (unfinished)
author contrebasse
date Sat, 02 Apr 2011 22:11:51 +0200
parents ed0582126cae
children 70f7d02c2cec
comparison
equal deleted inserted replaced
7:28d5f1fbd33f 8:17844b0b88c1
1 local addonName, A = ... 1 local addonName, A = ...
2 2
3 MillID = 51005 3 MillID = 51005
4 macroMill = "/cast "..GetSpellInfo(51005).."\n/use " 4 macroMill = "/cast "..GetSpellInfo(MillID).."\n/use "
5 ProspectID = 31252
6 macroProspect = "/cast "..GetSpellInfo(ProspectID).."\n/use "
5 A.data = { 7 A.data = {
6 -- Mill 8 -- Mill
7 [39151] = { -- Alabaster Pigment 9 [39151] = { -- Alabaster Pigment
8 spell = macroMill, 10 spell = macroMill,
9 spellID = MillID, 11 spellID = MillID,
80 {52985,5}, -- Azshara's Veil 82 {52985,5}, -- Azshara's Veil
81 {52984,5}, -- Stormvine 83 {52984,5}, -- Stormvine
82 {52986,5}, -- Heartblossom 84 {52986,5}, -- Heartblossom
83 {52988,5}, -- Whiptail 85 {52988,5}, -- Whiptail
84 {52987,5}}, -- Twilight Jasmine 86 {52987,5}}, -- Twilight Jasmine
87
88 -- Prospect
89 [774] = { -- Malachite
90 spell = macroMill,
91 spellID = MillID,
92 {2770,5,0.5}}, -- Copper Ore
93 [818] = { -- Tigerseye
94 spell = macroMill,
95 spellID = MillID,
96 {2770,5,0.5}}, -- Copper Ore
97 [1210] = { -- Shadowgem
98 spell = macroMill,
99 spellID = MillID,
100 {2771,50.38}, -- Tin Ore
101 {2770,5,0.1}}, -- Copper Ore
102 [1705] = { -- Lesser Moonstone
103 spell = macroMill,
104 spellID = MillID,
105 {2771,5,0.38}, -- Tin Ore
106 {2772,5,0.35}}, -- Iron Ore
107 [1206] = { -- Moss Agate
108 spell = macroMill,
109 spellID = MillID,
110 {2771,5,0.37}}, -- Tin Ore
111 [1529] = { -- Jade
112 spell = macroMill,
113 spellID = MillID,
114 {2772,5,0.35}, -- Iron Ore
115 {2771,5,0.03}}, -- Tin Ore
116 [7909] = { -- Aquamarine
117 spell = macroMill,
118 spellID = MillID,
119 {3858,5,0.35}, -- Mithril Ore
120 {2772,5,0.05}, -- Iron Ore
121 {2771,5,0.03}}, -- Tin Ore
122 [3864] = { -- Citrine
123 spell = macroMill,
124 spellID = MillID,
125 {2772,5,0.36}, -- Iron Ore
126 {3858,5,0.35}, -- Mithril Ore
127 {2771,5,0.03}}, -- Tin Ore
128 [7910] = { -- Star Ruby
129 spell = macroMill,
130 spellID = MillID,
131 {3858,5,0.36}, -- Mithril Ore
132 {10620,5,0.15}, -- Thorium Ore
133 {2772,5,0.05}}, -- Iron Ore
134 [12799] = { -- Large Opal
135 spell = macroMill,
136 spellID = MillID,
137 {10620,5,0.31}, -- Thorium Ore
138 {3858,5,0.03}}, -- Mithril Ore
139 [12361] = { -- Blue Sapphire
140 spell = macroMill,
141 spellID = MillID,
142 {10620,5,0.31}, -- Thorium Ore
143 {3858,5,0.02}}, -- Mithril Ore
144 [12800] = { -- Azerothian Diamond
145 spell = macroMill,
146 spellID = MillID,
147 {10620,5,0.31}, -- Thorium Ore
148 {3858,5,0.02}}, -- Mithril Ore
149 [12364] = { -- Huge Emerald
150 spell = macroMill,
151 spellID = MillID,
152 {10620,5,0.31}, -- Thorium Ore
153 {3858,5,0.02}}, -- Mithril Ore
154 [23112] = { -- Golden Draenite
155 spell = macroMill,
156 spellID = MillID,
157 {23424,5,0.19}, -- Fel Iron Ore
158 {23425,5,0.18}}, -- Adamantite Ore
159 -- To be continued...
160
85 161
86 -- To add : enchants, elementals, prospecting 162 -- To add : enchants, elementals, prospecting
87 } 163 }
88 A.data[43103] = A.data[39224] -- Verdant Pigment 164 A.data[43103] = A.data[39224] -- Verdant Pigment
89 A.data[43104] = A.data[39338] -- Burnt Pigment 165 A.data[43104] = A.data[39338] -- Burnt Pigment