diff options
Diffstat (limited to 'gamemode/craftablesystem/playermade/flour.lua')
| -rw-r--r-- | gamemode/craftablesystem/playermade/flour.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/flour.lua b/gamemode/craftablesystem/playermade/flour.lua new file mode 100644 index 0000000..f72deca --- /dev/null +++ b/gamemode/craftablesystem/playermade/flour.lua @@ -0,0 +1,14 @@ +local COMBI = {} + +COMBI.Name = "Flour" +COMBI.Description = "Flour can be used for making dough." + +COMBI.Req = {} +COMBI.Req["Stone"] = 1 +COMBI.Req["Grain_Seeds"] = 2 + +COMBI.Results = {} +COMBI.Results["Flour"] = 1 +COMBI.Results["Stone"] = 1 + +GMS.RegisterCombi( COMBI, "Combinations" ) |
