ademant 2078bef91c extend locale преди 1 година
..
locale 2078bef91c extend locale преди 1 година
textures b7562158b5 now with coffee machine преди 1 година
README.md b7562158b5 now with coffee machine преди 1 година
coffeemaker.lua bdb507cc90 add german locale преди 1 година
craft.lua b7562158b5 now with coffee machine преди 1 година
craftitems.lua b7562158b5 now with coffee machine преди 1 година
init.lua b7562158b5 now with coffee machine преди 1 година
mod.conf b7562158b5 now with coffee machine преди 1 година
recipe_register.lua b7562158b5 now with coffee machine преди 1 година
screenshot.png 8a781a471b add screenshot of coffee brewing преди 1 година

README.md

Technic_Farming - Coffee !

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:

  • left slot: Grain like coffee beans or cocoa beans
  • middle slot: storage for cups
  • right slot: liquid like bucket of water or bucket of milk for cappuccino

After some time the hot drink is produced.

Recipes

The recipes itself are laid into an own mod, so that the recipes can be declared later and respect dependencies to other mods.

API

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.