added bottles of beer and wheat beer (thanks Darkstalker for textures)
This commit is contained in:
parent
e9cc9bd5fa
commit
0e8ea4f580
@ -21,6 +21,7 @@ Change log:
|
||||
- 1.1 - Added glass and bottle of Vodka made by fermenting baked potato, Added MineClone2 support and spanish translation
|
||||
- 1.2 - Added Unified Inventory support for barrel recipes (thanks to realmicu)
|
||||
- 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)
|
||||
|
||||
Lucky Blocks: 13
|
||||
|
||||
|
64
init.lua
64
init.lua
@ -239,6 +239,38 @@ minetest.register_node("wine:glass_wheat_beer", {
|
||||
on_use = minetest.item_eat(2),
|
||||
})
|
||||
|
||||
-- bottle of wheat beer
|
||||
minetest.register_node("wine:bottle_wheat_beer", {
|
||||
description = S("Bottle of Wheat Beer"),
|
||||
drawtype = "plantlike",
|
||||
tiles = {"wine_wheat_beer_bottle.png"},
|
||||
inventory_image = "wine_wheat_beer_bottle.png",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = { -0.15, -0.5, -0.15, 0.15, 0.25, 0.15 }
|
||||
},
|
||||
groups = {dig_immediate = 3, attached_node = 1, vessel = 1},
|
||||
sounds = wine.snd_d,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "wine:bottle_wheat_beer",
|
||||
recipe = {
|
||||
{"wine:glass_wheat_beer", "wine:glass_wheat_beer", "wine:glass_wheat_beer"},
|
||||
{"wine:glass_wheat_beer", "wine:glass_wheat_beer", "wine:glass_wheat_beer"},
|
||||
{"wine:glass_wheat_beer", "wine:glass_wheat_beer", "wine:glass_wheat_beer"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "wine:glass_wheat_beer 9",
|
||||
recipe = {"wine:bottle_wheat_beer"},
|
||||
})
|
||||
|
||||
|
||||
-- glass of beer (thanks to RiverKpocc @ deviantart.com for image)
|
||||
minetest.register_node("wine:glass_beer", {
|
||||
@ -264,6 +296,38 @@ minetest.register_node("wine:glass_beer", {
|
||||
on_use = minetest.item_eat(2),
|
||||
})
|
||||
|
||||
-- bottle of beer
|
||||
minetest.register_node("wine:bottle_beer", {
|
||||
description = S("Bottle of Beer"),
|
||||
drawtype = "plantlike",
|
||||
tiles = {"wine_beer_bottle.png"},
|
||||
inventory_image = "wine_beer_bottle.png",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = { -0.15, -0.5, -0.15, 0.15, 0.25, 0.15 }
|
||||
},
|
||||
groups = {dig_immediate = 3, attached_node = 1, vessel = 1},
|
||||
sounds = wine.snd_d,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "wine:bottle_beer",
|
||||
recipe = {
|
||||
{"wine:glass_beer", "wine:glass_beer", "wine:glass_beer"},
|
||||
{"wine:glass_beer", "wine:glass_beer", "wine:glass_beer"},
|
||||
{"wine:glass_beer", "wine:glass_beer", "wine:glass_beer"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "wine:glass_beer 9",
|
||||
recipe = {"wine:bottle_beer"},
|
||||
})
|
||||
|
||||
|
||||
-- glass of honey mead
|
||||
minetest.register_node("wine:glass_mead", {
|
||||
|
BIN
textures/wine_beer_bottle.png
Normal file
BIN
textures/wine_beer_bottle.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 347 B |
BIN
textures/wine_wheat_beer_bottle.png
Normal file
BIN
textures/wine_wheat_beer_bottle.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 347 B |
Loading…
x
Reference in New Issue
Block a user