summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/playermade/concrete.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/playermade/concrete.lua')
-rw-r--r--gamemode/craftablesystem/playermade/concrete.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/concrete.lua b/gamemode/craftablesystem/playermade/concrete.lua
new file mode 100644
index 0000000..383c04d
--- /dev/null
+++ b/gamemode/craftablesystem/playermade/concrete.lua
@@ -0,0 +1,14 @@
+/* Concrete */
+local COMBI = {}
+
+COMBI.Name = "Concrete"
+COMBI.Description = "Concrete can be used for spawning concrete props."
+
+COMBI.Req = {}
+COMBI.Req["Sand"] = 5
+COMBI.Req["Water_Bottles"] = 2
+
+COMBI.Results = {}
+COMBI.Results["Concrete"] = 1
+
+GMS.RegisterCombi( COMBI, "Combinations" )