ademant 2078bef91c extend locale 1 ano atrás
..
locale 2078bef91c extend locale 1 ano atrás
textures b7562158b5 now with coffee machine 1 ano atrás
README.md b7562158b5 now with coffee machine 1 ano atrás
coffeemaker.lua bdb507cc90 add german locale 1 ano atrás
craft.lua b7562158b5 now with coffee machine 1 ano atrás
craftitems.lua b7562158b5 now with coffee machine 1 ano atrás
init.lua b7562158b5 now with coffee machine 1 ano atrás
mod.conf b7562158b5 now with coffee machine 1 ano atrás
recipe_register.lua b7562158b5 now with coffee machine 1 ano atrás
screenshot.png 8a781a471b add screenshot of coffee brewing 1 ano atrás

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.