ademant 2078bef91c extend locale 1 yıl önce
..
locale 2078bef91c extend locale 1 yıl önce
textures b7562158b5 now with coffee machine 1 yıl önce
README.md b7562158b5 now with coffee machine 1 yıl önce
coffeemaker.lua bdb507cc90 add german locale 1 yıl önce
craft.lua b7562158b5 now with coffee machine 1 yıl önce
craftitems.lua b7562158b5 now with coffee machine 1 yıl önce
init.lua b7562158b5 now with coffee machine 1 yıl önce
mod.conf b7562158b5 now with coffee machine 1 yıl önce
recipe_register.lua b7562158b5 now with coffee machine 1 yıl önce
screenshot.png 8a781a471b add screenshot of coffee brewing 1 yıl önce

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.