summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/misc/drinkingfountain.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/misc/drinkingfountain.lua')
-rw-r--r--gamemode/craftablesystem/misc/drinkingfountain.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/drinkingfountain.lua b/gamemode/craftablesystem/misc/drinkingfountain.lua
new file mode 100644
index 0000000..261099c
--- /dev/null
+++ b/gamemode/craftablesystem/misc/drinkingfountain.lua
@@ -0,0 +1,16 @@
+/* Drinking Fountain */
+local COMBI = {}
+
+COMBI.Name = "Drinking Fountain"
+COMBI.Description = "PORTABLE WATER?!"
+
+COMBI.Req = {}
+COMBI.Req["Copper"] = 50
+COMBI.Req["Iron"] = 50
+COMBI.Req["Water_Bottles"] = 50
+
+COMBI.Results = "gms_waterfountain"
+COMBI.Texture = "gms_icons/gms_waterfountain.png"
+COMBI.BuildSiteModel = "models/props/de_inferno/fountain.mdl"
+
+GMS.RegisterCombi( COMBI, "Structures" )