diff options
Diffstat (limited to 'gamemode/craftablesystem/playermade/spice.lua')
| -rw-r--r-- | gamemode/craftablesystem/playermade/spice.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/spice.lua b/gamemode/craftablesystem/playermade/spice.lua new file mode 100644 index 0000000..3172ed5 --- /dev/null +++ b/gamemode/craftablesystem/playermade/spice.lua @@ -0,0 +1,15 @@ +/* Spice */ +local COMBI = {} + +COMBI.Name = "Spices" +COMBI.Description = "Spice can be used for various meals." + +COMBI.Req = {} +COMBI.Req["Stone"] = 1 +COMBI.Req["Herbs"] = 2 + +COMBI.Results = {} +COMBI.Results["Spices"] = 1 +COMBI.Results["Stone"] = 1 + +GMS.RegisterCombi( COMBI, "Combinations" ) |
