add sushi

master
tenplus1 2021-03-30 16:56:00 +01:00
parent f401f85022
commit 17a1c930a7
5 changed files with 45 additions and 0 deletions

View File

@ -401,3 +401,45 @@ minetest.register_craft({
{"farming:juicer", "farming:juicer"}
},
})
-- Kappa Maki (sushi with cucumber)
minetest.register_craftitem("ethereal:sushi_kappamaki", {
description = S("Kappa Maki Sushi"),
inventory_image = "ethereal_sushi_kappa_maki.png",
on_use = minetest.item_eat(3),
})
minetest.register_craft({
output = "ethereal:sushi_kappamaki 2",
recipe = {
{"group:food_seaweed", "group:food_cucumber", "group:food_rice"}
}
})
-- Nigiri (sushi with raw fish)
minetest.register_craftitem("ethereal:sushi_nigiri", {
description = S("Nigiri Sushi"),
inventory_image = "ethereal_sushi_nigiri.png",
on_use = minetest.item_eat(2),
})
minetest.register_craft({
output = "ethereal:sushi_nigiri 2",
recipe = {
{"group:food_rice", "group:food_fish_raw", ""}
}
})
-- Tamago (sushi with sweet egg)
minetest.register_craftitem("ethereal:sushi_tomago", {
description = S("Tomago Sushi"),
inventory_image = "ethereal_sushi_tamago.png",
on_use = minetest.item_eat(2),
})
minetest.register_craft({
output = "ethereal:sushi_tomago 2",
recipe = {
{"group:food_seaweed", "group:food_egg", "group:food_rice"}
}
})

View File

@ -49,6 +49,9 @@ Free textures from epicwannehz on DeviantArt
ethereal_fish_jellyfish.png
ethereal_fish_seahorse.png
Free textures from lisheng2121 (shutterstock)
ethereal_sushi_*.png
Notice: Most texture authors are written inside code as comments, anything with no name
I have more than likely created myself :)

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B