wowget 0.4.4 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/wowget.rb +1 -1
- data/lib/wowget/item.rb +9 -9
- metadata +1 -1
data/lib/wowget.rb
CHANGED
data/lib/wowget/item.rb
CHANGED
@@ -105,7 +105,7 @@ module Wowget
|
|
105
105
|
3 => {:name => 'Mail', :slug => 'mail', :inventoryslots => true},
|
106
106
|
4 => {:name => 'Plate', :slug => 'plate', :inventoryslots => true},
|
107
107
|
6 => {:name => 'Shields', :slug => 'shields'},
|
108
|
-
11 => {:name => 'Relics', :slug => 'relics}
|
108
|
+
11 => {:name => 'Relics', :slug => 'relics'}
|
109
109
|
},
|
110
110
|
'Trade Goods' => {
|
111
111
|
1 => {:name => 'Parts', :slug => 'parts'},
|
@@ -161,16 +161,16 @@ module Wowget
|
|
161
161
|
}
|
162
162
|
}
|
163
163
|
INVENTORY_SLOTS = {
|
164
|
-
1 => {:name => 'Head', :slug => 'head'},
|
164
|
+
1 => {:name => 'Head', :slug => 'head', :armor => true},
|
165
165
|
2 => {:name => 'Neck', :slug => 'neck'},
|
166
|
-
3 => {:name => 'Shoulder', :slug => 'shoulder'},
|
166
|
+
3 => {:name => 'Shoulder', :slug => 'shoulder', :armor => true},
|
167
167
|
4 => {:name => 'Shirt', :slug => 'shirt'},
|
168
|
-
5 => {:name => 'Chest', :slug => 'chest'},
|
169
|
-
6 => {:name => 'Waist', :slug => 'waist'},
|
170
|
-
7 => {:name => 'Legs', :slug => 'legs'},
|
171
|
-
8 => {:name => 'Feet', :slug => 'feet'},
|
172
|
-
9 => {:name => 'Wrist', :slug => 'wrist'},
|
173
|
-
10 => {:name => 'Hands', :slug => 'hands'},
|
168
|
+
5 => {:name => 'Chest', :slug => 'chest', :armor => true},
|
169
|
+
6 => {:name => 'Waist', :slug => 'waist', :armor => true},
|
170
|
+
7 => {:name => 'Legs', :slug => 'legs', :armor => true},
|
171
|
+
8 => {:name => 'Feet', :slug => 'feet', :armor => true},
|
172
|
+
9 => {:name => 'Wrist', :slug => 'wrist', :armor => true},
|
173
|
+
10 => {:name => 'Hands', :slug => 'hands', :armor => true},
|
174
174
|
11 => {:name => 'Finger', :slug => 'finger'},
|
175
175
|
12 => {:name => 'Trinket', :slug => 'trinket'},
|
176
176
|
13 => {:name => 'One-Hand', :slug => 'one_hand'},
|