blob: 6fcdcb44c7c58919cfb3d8dd94edbec706848d00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
local ITEM = {}
ITEM.Name = "Mortar and Pestle"
ITEM.Class = "tool"
ITEM.Desc = "Something to grind things down in"
ITEM.Model = "models/props_junk/Rock001a.mdl"
ITEM.Icon = Material("wintersurvival2/hud/ws2_icons/icon_mortarandpestle.png")
ITEM.Recipe = {
Resources = {
["Cup"] = 1,
["Rock"] = 1,
},
Tools = {
["Knife"] = 1,
},
}
function ITEM:OnPrimary()
end
RegisterItem(ITEM)
|