Delete test.txt
This commit is contained in:
parent
ff9450670c
commit
75dfe53b26
23
test.txt
23
test.txt
@ -1,23 +0,0 @@
|
||||
-- raw fish
|
||||
minetest.register_craftitem(":wildlife:rawfish", {
|
||||
description = ("Raw Fish"),
|
||||
inventory_image = "wildlife_rawfish.png",
|
||||
on_use = minetest.item_eat(3),
|
||||
groups = {food_meat_raw = 1, flammable = 2},
|
||||
})
|
||||
|
||||
-- cooked fish
|
||||
minetest.register_craftitem(":wildlife:cookedfish", {
|
||||
description = ("Cooked Fish"),
|
||||
inventory_image = "wildlife_cookedfish.png",
|
||||
on_use = minetest.item_eat(5),
|
||||
groups = {food_meat = 1, flammable = 2},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "wildlife:cookedfish",
|
||||
recipe = "wildlife:rawfish",
|
||||
cooktime = 5,
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user