diff options
Diffstat (limited to 'gamemode/craftablesystem')
| -rw-r--r-- | gamemode/craftablesystem/playermade/medicine.lua | 1 | ||||
| -rw-r--r-- | gamemode/craftablesystem/playermade/urine.lua | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/medicine.lua b/gamemode/craftablesystem/playermade/medicine.lua index 223cc1c..998c1a2 100644 --- a/gamemode/craftablesystem/playermade/medicine.lua +++ b/gamemode/craftablesystem/playermade/medicine.lua @@ -2,6 +2,7 @@ local COMBI = {} COMBI.Name = "Medicine" COMBI.Description = "To restore your health." +COMBI.Icon = "items/medicine.png" COMBI.Req = {} COMBI.Req["Herbs"] = 7 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" ) + |
