Skip to content
Snippets Groups Projects
Verified Commit eb75a769 authored by Felfa Romeo Echo's avatar Felfa Romeo Echo
Browse files

added champagne

parent 17a935ba
No related tags found
No related merge requests found
......@@ -76,7 +76,8 @@ local ferment = {
{"ethereal:olive", "ethereal:pickled_olives"},
{"farming:cabbage", "farming:sauerkraut"},
{"farming:coffee_beans", "wine:glass_coffee_liquor"},
{"ethereal:herring_canned", "ethereal:surstromming_canned"}
{"ethereal:herring_canned", "ethereal:surstromming_canned"},
{"wine:glass_champagne_raw", "wine:glass_champagne"}
}
if mcl then
......@@ -132,7 +133,8 @@ local beverages = {
{"vodka", "Vodka", true, 2, 3},
{"cider", "Cider", true, 2, 6},
{"mead", "Honey-Mead", true, 4, 5},
{"mint", "Mint Julep", true, 4, 3}
{"mint", "Mint Julep", true, 4, 3},
{"champagne", "Champagne", true, 4, 5}
}
......@@ -227,6 +229,24 @@ minetest.register_craft({
recipe = "wine:glass_wine"
})
-- Raw champagne
if minetest.get_modpath("farming")
and farming.mod and ( farming.mod == "undo" or farming.mod == "redo" ) then
minetest.register_craftitem("wine:glass_champagne_raw", {
description = "Raw Champagne",
inventory_image = "wine_champagne_raw_glass.png",
groups = {vessel = 1, flammable = 3}
})
minetest.register_craft({
type = "shapeless",
output = "wine:glass_champagne_raw",
recipe = {
"wine:glass_wine", "farming:sugar"
}
})
end
-- override to add food group to wine glass
minetest.override_item("wine:glass_wine", {
groups = {
......
textures/wine_champagne_bottle.png

330 B

textures/wine_champagne_glass.png

199 B

textures/wine_champagne_raw_glass.png

212 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment