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.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/urine.lua b/gamemode/craftablesystem/playermade/urine.lua
index aed7d35..ae05626 100644
--- a/gamemode/craftablesystem/playermade/urine.lua
+++ b/gamemode/craftablesystem/playermade/urine.lua
@@ -3,6 +3,7 @@ local COMBI = {}
COMBI.Name = "Urine"
COMBI.Description = "Drink some water and wait, used in gunpowder production."
+COMBI.Icon = "items/bottle_urine.png"
COMBI.Req = {}
COMBI.Req["Water Bottles"] = 2
@@ -17,6 +18,7 @@ local COMBI = {}
COMBI.Name = "Urine 10x"
COMBI.Description = "Drink loads of water and wait, messy, but used in gunpowder production."
+COMBI.Icon = "items/bottle_urine.png"
COMBI.Req = {}
COMBI.Req["Water Bottles"] = 20
@@ -25,3 +27,19 @@ COMBI.Results = {}
COMBI.Results["Urine Bottles"] = 10
GMS.RegisterCombi( COMBI, "Combinations" )
+
+/* Urine 50x */
+local COMBI = {}
+
+COMBI.Name = "Urine 50x"
+COMBI.Description = "Drink loads of water and wait, messy, but used in gunpowder production."
+COMBI.Icon = "items/bottle_urine.png"
+
+COMBI.Req = {}
+COMBI.Req["Water Bottles"] = 100
+
+COMBI.Results = {}
+COMBI.Results["Urine Bottles"] = 50
+
+GMS.RegisterCombi( COMBI, "Combinations" )
+