1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
local ITEM = {}
ITEM.Name = "Crystal Hammer"
ITEM.Class = "resource"
ITEM.Desc = "A tool used for crystal equipment"
ITEM.Model = "models/props_combine/breenlight.mdl"
ITEM.Icon = Material("wintersurvival2/hud/ws1_icons/icon_crystal")
ITEM.Structure = {
{
Bone = "ValveBiped.Bip01_R_Hand",
Model = "models/props_combine/breenlight.mdl",
Size = Vector(0.5,0.5,0.5),
Pos = Vector(4,-3,-1),
Ang = Angle(0,0,0),
},
}
ITEM.Recipe = {
Resources = {
["Crystal"] = 8,
["Sap"] = 4,
},
Tools = {},
}
RegisterItem(ITEM)
|