diff options
Diffstat (limited to 'gamemode/craftablesystem')
| -rw-r--r-- | gamemode/craftablesystem/misc/stove.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/stove.lua b/gamemode/craftablesystem/misc/stove.lua index 3bf38f3..c93c433 100644 --- a/gamemode/craftablesystem/misc/stove.lua +++ b/gamemode/craftablesystem/misc/stove.lua @@ -15,6 +15,20 @@ COMBI.BuildSiteModel = "models/props_c17/furniturestove001a.mdl" GMS.RegisterCombi( COMBI, "Structures" ) +/* Campfire */ +COMBI.Name = "Campfire" +COMBI.Description = "A fire you can cook things over!" + +COMBI.Req = {} +COMBI.Req["Stone"] = 10 +COMBI.Req["Wood"] = 15 + +COMBI.Results = "gms_campfire" +COMBI.Texture = "gms_icons/gms_stove.png" +COMBI.BuildSiteModel = "models/XQM/Rails/gumball_1.mdl" + +GMS.RegisterCombi( COMBI, "Structures" ) + /* Casserole */ local COMBI = {} |
