diff options
Diffstat (limited to 'gamemode/craftablesystem/playermade/dough.lua')
| -rw-r--r-- | gamemode/craftablesystem/playermade/dough.lua | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/dough.lua b/gamemode/craftablesystem/playermade/dough.lua new file mode 100644 index 0000000..94e33cf --- /dev/null +++ b/gamemode/craftablesystem/playermade/dough.lua @@ -0,0 +1,29 @@ +/* Dough */ +local COMBI = {} + +COMBI.Name = "Dough" +COMBI.Description = "Dough is used for baking." + +COMBI.Req = {} +COMBI.Req["Water_Bottles"] = 1 +COMBI.Req["Flour"] = 2 + +COMBI.Results = {} +COMBI.Results["Dough"] = 1 + +GMS.RegisterCombi( COMBI, "Combinations" ) + +/* Dough x10 */ +local COMBI = {} + +COMBI.Name = "Dough 10x" +COMBI.Description = "Dough is used for baking." + +COMBI.Req = {} +COMBI.Req["Water_Bottles"] = 7 +COMBI.Req["Flour"] = 15 + +COMBI.Results = {} +COMBI.Results["Dough"] = 10 + +GMS.RegisterCombi( COMBI, "Combinations" ) |
