vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2 --
3 -- Sea.data.item
4 --
5 -- Various item lists for use by WoW mods
6 --
7 -- $LastChangedBy: zespri $
8 -- $Rev: 3464 $
9 -- $Date: 2006-04-27 07:35:49 -0500 (Thu, 27 Apr 2006) $
10 --]]
11  
12 Sea.data.item = {
13  
14 --
15 -- Herbs
16 --
17 -- Thanks to Zatharas, Narands, Xdra, Mirodin and Reima for this list
18 herb = SEA_HERB_LIST;
19  
20 --
21 -- A list of the ores in Wow
22 --
23 ore = SEA_ORE_LIST;
24  
25  
26 --
27 -- A very incomplete gem list
28 --
29 gem = SEA_GEM_LIST;
30  
31 --
32 -- A simple list for potion name checks
33 --
34 potion = SEA_POTION_LIST;
35 --
36 -- Cloths
37 --
38 cloth = SEA_CLOTH_LIST;
39  
40 --
41 -- Leather
42 --
43  
44 leather = SEA_LEATHER_LIST;
45  
46 --[[ Tradeskills ]]--
47 --
48 -- Leatherworking only items
49 --
50 leatherworking = SEA_LEATHERWORKING_LIST;
51 -- leatherworking is joined with Sea.data.item.leather to create a complete list.
52  
53 --
54 -- Fishing Tools
55 --
56 fishing = SEA_FISHING_LIST;
57  
58 --[[ Class Items ]] --
59  
60 --
61 -- Warlock Items
62 --
63 warlock = SEA_WARLOCK_LIST;
64 --
65 -- Shaman Items
66 --
67 shaman = SEA_SHAMAN_LIST;
68  
69 --
70 -- Mage Items
71 --
72 mage = SEA_MAGE_LIST;
73  
74  
75 --[[ Consumable ]]--
76  
77  
78 --
79 -- Food
80 --
81 food = SEA_FOOD_LIST;
82 --
83 -- Drink
84 --
85 drink = SEA_DRINK_LIST;
86  
87 --[[ Reagents ]]--
88  
89 reagent = {
90 };
91 };
92  
93 --
94 -- Alchemy Reagents
95 --
96 Sea.data.item.reagent.alchemy = SEA_REAGENT_ALCHEMY;
97 --
98 -- Blacksmithing Reagents
99 --
100 Sea.data.item.reagent.blacksmithing = SEA_REAGENT_BLACKSMITHING;
101  
102 --
103 -- Enchanting Reagents
104 --
105 Sea.data.item.reagent.enchanting = SEA_REAGENT_ENCHANTING;
106 --
107 -- Engineering Reagents
108 --
109 Sea.data.item.reagent.engineering = SEA_REAGENT_ENGINEERING;
110  
111 --
112 -- Leatherworking Reagents
113 --
114 Sea.data.item.reagent.leatherworking = SEA_REAGENT_LEATHERWORKING;
115 --
116 -- Mining Reagents
117 --
118 -- OK, are Bars parts of Mining or not?
119 -- No, they are not.
120 --
121 Sea.data.item.reagent.mining = SEA_REAGENT_MINING;
122  
123 -- First Aid Reagents
124 --
125 Sea.data.item.reagent.firstaid = SEA_REAGENT_FIRST_AID;
126 --
127 -- Cooking Reagents
128 --
129 Sea.data.item.reagent.cooking = SEA_REAGENT_COOKING;
130  
131 ---
132 --- Poison Reagents
133 ---
134 Sea.data.item.reagent.poison = SEA_REAGENT_POISON;
135 ---
136 --- Poisons
137 ---
138 Sea.data.item.poison = SEA_POISON;
139  
140  
141 --
142 -- Tailoring Reagents
143 --
144 Sea.data.item.reagent.tailoring = SEA_REAGENT_TAILORING;
145  
146 --[[ Class Reagents ]]--
147 Sea.data.item.reagent.paladin = SEA_REAGENT_PALADIN;
148 Sea.data.item.reagent.mage = SEA_REAGENT_MAGE;
149 Sea.data.item.reagent.priest = SEA_REAGENT_PRIEST;
150 Sea.data.item.reagent.shaman = SEA_REAGENT_SHAMAN;
151 Sea.data.item.reagent.warlock = SEA_REAGENT_WARLOCK;
152 Sea.data.item.reagent.druid = SEA_REAGENT_DRUID;
153 Sea.data.item.reagent.rogue = SEA_REAGENT_ROGUE;
154 Sea.data.item.reagent.hunter = SEA_REAGENT_HUNTER;
155 Sea.data.item.reagent.warrior = SEA_REAGENT_WARRIOR;
156