add sushi
This commit is contained in:
parent
f401f85022
commit
17a1c930a7
42
food.lua
42
food.lua
@ -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"}
|
||||
}
|
||||
})
|
||||
|
@ -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 :)
|
||||
|
||||
|
BIN
textures/ethereal_sushi_kappa_maki.png
Normal file
BIN
textures/ethereal_sushi_kappa_maki.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 185 B |
BIN
textures/ethereal_sushi_nigiri.png
Normal file
BIN
textures/ethereal_sushi_nigiri.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 194 B |
BIN
textures/ethereal_sushi_tamago.png
Normal file
BIN
textures/ethereal_sushi_tamago.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 198 B |
Loading…
x
Reference in New Issue
Block a user