ademant 2078bef91c extend locale | 1 gadu atpakaļ | |
---|---|---|
.. | ||
locale | 1 gadu atpakaļ | |
textures | 1 gadu atpakaļ | |
README.md | 1 gadu atpakaļ | |
coffeemaker.lua | 1 gadu atpakaļ | |
craft.lua | 1 gadu atpakaļ | |
craftitems.lua | 1 gadu atpakaļ | |
init.lua | 1 gadu atpakaļ | |
mod.conf | 1 gadu atpakaļ | |
recipe_register.lua | 1 gadu atpakaļ | |
screenshot.png | 1 gadu atpakaļ |
This mod offer LV and MV coffee machine, which is able to brew several hot beverages, not only coffee.
The machine has three input slot:
After some time the hot drink is produced.
The recipes itself are laid into an own mod, so that the recipes can be declared later and respect dependencies to other mods.
The technic mod offer the possibility to register new kind of recipes. For this mod a new kind "brew" is registered. A shortcut for registering brewing recipes is available as:
tf_coffee.register_brewing_recipe(data)
Example: tf_coffee.register_brewing_recipe({input = {"farming:coffee_beans", "vessels:drinking_glass 4","bucket:bucket_water"}, output = {"farming:coffee_cup 4","bucket:bucket_empty"}, time = 4})
It take one coffee bean, 4 drinking glasses and one bucket of water to create after 4 seconds 4 cups of coffee and give you an empty bucket.