[antum_overrides] Override recipes for "animalmaterials:fish_clownfish"

& "cooking:fish_clownfish_cooked".
This commit is contained in:
AntumDeluge 2016-08-29 23:30:35 -07:00
parent 0310ef4362
commit 0c59d13d2c
2 changed files with 17 additions and 1 deletions

View File

@ -30,5 +30,13 @@ minetest.register_craftitem(":animalmaterials:fish_bluewhite", {
image = "antum_fish_raw.png",
on_use = minetest.item_eat(1),
groups = { meat=1, eatable=1 },
stack_max=25
stack_max = 25
})
minetest.register_craftitem(":animalmaterials:fish_clownfish", {
description = "Raw Clownfish",
image = "antum_fish_raw.png",
on_use = minetest.item_eat(1),
groups = { meat=1, eatable=1 },
stack_max = 25
})

View File

@ -32,3 +32,11 @@ minetest.register_craftitem(":cooking:fish_bluewhite_cooked", {
groups = { meat=1 , eatable=1},
stack_max = 25
})
minetest.register_craftitem(":cooking:fish_clownfish_cooked", {
description = "Cooked Clownfish",
image = "antum_fish_cooked.png",
on_use = core.item_eat(6),
groups = { meat=1 , eatable=1},
stack_max = 25
})