summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/playermade/urine.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/playermade/urine.lua')
-rw-r--r--gamemode/craftablesystem/playermade/urine.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/urine.lua b/gamemode/craftablesystem/playermade/urine.lua
new file mode 100644
index 0000000..9c5761c
--- /dev/null
+++ b/gamemode/craftablesystem/playermade/urine.lua
@@ -0,0 +1,27 @@
+/* Urine */
+local COMBI = {}
+
+COMBI.Name = "Urine"
+COMBI.Description = "Drink some water and wait, used in gunpowder production."
+
+COMBI.Req = {}
+COMBI.Req["Water_Bottles"] = 2
+
+COMBI.Results = {}
+COMBI.Results["Urine_Bottles"] = 1
+
+GMS.RegisterCombi( COMBI, "Combinations" )
+
+/* Urine 10x */
+local COMBI = {}
+
+COMBI.Name = "Urine 10x"
+COMBI.Description = "Drink loads of water and wait, messy, but used in gunpowder production."
+
+COMBI.Req = {}
+COMBI.Req["Water_Bottles"] = 20
+
+COMBI.Results = {}
+COMBI.Results["Urine_Bottles"] = 10
+
+GMS.RegisterCombi( COMBI, "Combinations" )