added mint julep glass and bottle (thanks Darkstalker)
This commit is contained in:
parent
b4d05c065a
commit
4107323b53
@ -23,10 +23,11 @@ Change log:
|
|||||||
- 1.3 - Translations updated and French added thanks to TheDarkTiger
|
- 1.3 - Translations updated and French added thanks to TheDarkTiger
|
||||||
- 1.4 - Added bottle of beer and bottle of wheat beer (thanks Darkstalker for textures)
|
- 1.4 - Added bottle of beer and bottle of wheat beer (thanks Darkstalker for textures)
|
||||||
- 1.5 - Added bottle of sake (texture by Darkstalker), code tidy & tweaks, resized bottles and glasses, added some new lucky blocks, support for Thirst mod
|
- 1.5 - Added bottle of sake (texture by Darkstalker), code tidy & tweaks, resized bottles and glasses, added some new lucky blocks, support for Thirst mod
|
||||||
- 1.6 - Added bottle of Mead and Cider (textures by Darkstalker), re-arranged
|
- 1.6 - Added bottle of Mead, Cider and Mint-Julep (textures by Darkstalker),
|
||||||
|
re-arranged
|
||||||
code, tweaked lucky blocks, updated translations
|
code, tweaked lucky blocks, updated translations
|
||||||
|
|
||||||
Lucky Blocks: 14
|
Lucky Blocks: 15
|
||||||
|
|
||||||
|
|
||||||
Wine Mod API
|
Wine Mod API
|
||||||
|
8
init.lua
8
init.lua
@ -67,7 +67,8 @@ local ferment = {
|
|||||||
{"farming:wheat", "wine:glass_wheat_beer"},
|
{"farming:wheat", "wine:glass_wheat_beer"},
|
||||||
{"farming:rice", "wine:glass_sake"},
|
{"farming:rice", "wine:glass_sake"},
|
||||||
{"farming:corn", "wine:glass_bourbon"},
|
{"farming:corn", "wine:glass_bourbon"},
|
||||||
{"farming:baked_potato", "wine:glass_vodka"}
|
{"farming:baked_potato", "wine:glass_vodka"},
|
||||||
|
{"farming:mint_leaf", "wine:glass_mint"}
|
||||||
}
|
}
|
||||||
|
|
||||||
if mcl then
|
if mcl then
|
||||||
@ -119,7 +120,8 @@ local beverages = {
|
|||||||
{"bourbon", "Bourbon", true, 2, 3},
|
{"bourbon", "Bourbon", true, 2, 3},
|
||||||
{"vodka", "Vodka", true, 2, 3},
|
{"vodka", "Vodka", true, 2, 3},
|
||||||
{"cider", "Cider", true, 2, 6},
|
{"cider", "Cider", true, 2, 6},
|
||||||
{"mead", "Honey-Mead", true, 4, 5}
|
{"mead", "Honey-Mead", true, 4, 5},
|
||||||
|
{"mint", "Mint Julep", true, 2, 3}
|
||||||
}
|
}
|
||||||
|
|
||||||
-- create glasses and bottles
|
-- create glasses and bottles
|
||||||
@ -559,6 +561,7 @@ if minetest.get_modpath("lucky_block") then
|
|||||||
{"dro", {"wine:glass_tequila"}, 5},
|
{"dro", {"wine:glass_tequila"}, 5},
|
||||||
{"dro", {"wine:glass_bourbon"}, 5},
|
{"dro", {"wine:glass_bourbon"}, 5},
|
||||||
{"dro", {"wine:glass_vodka"}, 5},
|
{"dro", {"wine:glass_vodka"}, 5},
|
||||||
|
{"dro", {"wine:glass_mint"}, 5},
|
||||||
{"dro", {"wine:wine_barrel"}, 1},
|
{"dro", {"wine:wine_barrel"}, 1},
|
||||||
{"tel", 5, 1},
|
{"tel", 5, 1},
|
||||||
{"nod", "default:chest", 0, {
|
{"nod", "default:chest", 0, {
|
||||||
@ -570,6 +573,7 @@ if minetest.get_modpath("lucky_block") then
|
|||||||
{name = "wine:bottle_vodka", max = 1},
|
{name = "wine:bottle_vodka", max = 1},
|
||||||
{name = "wine:wine_barrel", max = 1},
|
{name = "wine:wine_barrel", max = 1},
|
||||||
{name = "wine:bottle_sake", max = 1},
|
{name = "wine:bottle_sake", max = 1},
|
||||||
|
{name = "wine:bottle_mint", max = 1},
|
||||||
{name = "wine:bottle_mead", max = 1},
|
{name = "wine:bottle_mead", max = 1},
|
||||||
{name = "wine:bottle_beer", max = 1},
|
{name = "wine:bottle_beer", max = 1},
|
||||||
{name = "wine:bottle_wheat_beer", max = 1},
|
{name = "wine:bottle_wheat_beer", max = 1},
|
||||||
|
@ -35,4 +35,5 @@ Textures by Darkstalker (cc-by-3.0 license)
|
|||||||
wine_sake_bottle.png
|
wine_sake_bottle.png
|
||||||
wine_cider.bottle.png
|
wine_cider.bottle.png
|
||||||
wine_mead_bottle.png
|
wine_mead_bottle.png
|
||||||
|
wine_mint_bottle.png
|
||||||
|
wine_mint_glass.png
|
||||||
|
BIN
textures/wine_mint_bottle.png
Normal file
BIN
textures/wine_mint_bottle.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 191 B |
BIN
textures/wine_mint_glass.png
Normal file
BIN
textures/wine_mint_glass.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 198 B |
Loading…
x
Reference in New Issue
Block a user