aboutsummaryrefslogtreecommitdiff
path: root/gamemode/itemsystem/items/stoneblock.lua
blob: aa1fd397cd74429811e4ca451f0ea0e5bea9b442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local ITEM = {}
ITEM.Name 			= "Stoneblock"
ITEM.Class 			= "resource"
ITEM.Desc 			= "A useful building material."
ITEM.Model 			= "models/props_junk/CinderBlock01a.mdl"
ITEM.Icon			= Material("wintersurvival2/hud/ws2_icons/icon_stoneblock.png")

ITEM.Recipe		= {
	Resources = {
		["Rock"] = 4,
		["Sap"] = 2,
	},
	Tools = {},
}
RegisterItem(ITEM)