summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/playermade/medicine.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/playermade/medicine.lua')
-rw-r--r--gamemode/craftablesystem/playermade/medicine.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/medicine.lua b/gamemode/craftablesystem/playermade/medicine.lua
new file mode 100644
index 0000000..4ad245c
--- /dev/null
+++ b/gamemode/craftablesystem/playermade/medicine.lua
@@ -0,0 +1,13 @@
+local COMBI = {}
+
+COMBI.Name = "Medicine"
+COMBI.Description = "To restore your health."
+
+COMBI.Req = {}
+COMBI.Req["Herbs"] = 7
+COMBI.Req["Urine_Bottles"] = 2
+
+COMBI.Results = {}
+COMBI.Results["Medicine"] = 5
+
+GMS.RegisterCombi( COMBI, "Combinations" )