Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minetest-mods/beverage
Add various drinks to minetest
https://github.com/minetest-mods/beverage
beverage drink
Last synced: 8 days ago
JSON representation
Add various drinks to minetest
- Host: GitHub
- URL: https://github.com/minetest-mods/beverage
- Owner: minetest-mods
- Created: 2016-01-26T18:23:27.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-02T19:55:39.000Z (almost 6 years ago)
- Last Synced: 2024-11-06T17:40:34.841Z (about 2 months ago)
- Topics: beverage, drink
- Language: Lua
- Size: 1.17 MB
- Stars: 2
- Watchers: 7
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Beverage Mod
This mod adds various drinks to minetest
License = MIT
Related forum link
https://forum.minetest.net/viewtopic.php?f=11&t=13601&hilit=beverage![screenshot2](https://user-images.githubusercontent.com/11191763/52168608-17f60c00-273d-11e9-98c7-4a4e56eeb32e.png)
![screenshot](https://user-images.githubusercontent.com/11191763/52168610-19273900-273d-11e9-951b-229e23d279db.png)-- Current Beverages
Coffee, Milk, Hot Chocolate
Tea, Green Tea , Orange Juice
Apple Juice, Cherry Juice, Lemonade
Coconut Milk-- Dependecies
No external depentecies are needed, just the ones comes with default game engine:
- Default
- Vessels ( For crafting recipe )-- Hot drinks have a steam animation effect
-- Beverages has support for these mods:
farming, farming_plus, mobs, animals_modpack, foodblock
moretrees, biomelib, mtfoods, foods, ethereal, flowers
bushes, food_sweet, kpgmobs, fruit, jkanimals, ironappleYou can add your own drinks by using the following template:
register_beverage({
name = name of your drink,
recipe = "put fruit for drink"
liquidcolour = "colour of your liquids RGB code",
description = "description of your drink", optional
wherein = "cup or glasses" optional cup by default
cuptexture = "cup/glasses texture", optional
heat = "hot or cold" optional hot by default
})Changelog
1.7
Cleaned code
License changed from WTFPL to MIT
You have to use fire to boil hot beverages1.6
Deleted unnecessary codes (kadeh etc)
More coins added
Deleted empty cup and glasses because of no use for now
1.5 -
Vending machine is rotateable
Code tidy
Use coins from many mods for vending machine1.4 -
Added maximum stacks
Drinks are consumed when used1.3 -
Added vending machine
Added tins
Improved Api1.2 -
Added drinking sounds
Added support for thirsty mod
Added better inventory images (taken from coffee mod )
Improved Api1.1 -
Better nodeboxes
Better steam animation (from farmingplusplus)
Glasses has texture option too
1.0 -
Initial Release