diff options
Diffstat (limited to 'gamemode/craftablesystem/misc/fridge.lua')
| -rw-r--r-- | gamemode/craftablesystem/misc/fridge.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/fridge.lua b/gamemode/craftablesystem/misc/fridge.lua new file mode 100644 index 0000000..a67bb2a --- /dev/null +++ b/gamemode/craftablesystem/misc/fridge.lua @@ -0,0 +1,14 @@ +/* Fridge */ +local COMBI = {} + +COMBI.Name = "Fridge" +COMBI.Description = "You can use the fridge to store food in it. It will not spoil inside. Highly recommended." + +COMBI.Req = {} +COMBI.Req["Iron"] = 20 + +COMBI.Results = "gms_fridge" +COMBI.Texture = "gms_icons/gms_fridge.png" +COMBI.BuildSiteModel = "models/props_c17/FurnitureFridge001a.mdl" + +GMS.RegisterCombi( COMBI, "Structures" ) |
