aboutsummaryrefslogtreecommitdiff
path: root/gamemode/itemsystem/items/mortarandpestle.lua
blob: 42b1baa817c8f5e65f4ccd9017fcff98732c3120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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