Charakterbewegungen hinzugefügt, Deko hinzugefügt, Kochrezepte angepasst
This commit is contained in:
parent
95945c0306
commit
a0c893ca0b
1124 changed files with 64294 additions and 763 deletions
|
@ -559,6 +559,7 @@ for name, ndata in pairs({
|
|||
chance = 18,
|
||||
},
|
||||
hp = 2,
|
||||
groups = {mushroom = 1, food = 1, eatable = 2, food_mushroom = 1}
|
||||
},
|
||||
red = {
|
||||
description = "red mushroom",
|
||||
|
@ -578,6 +579,7 @@ for name, ndata in pairs({
|
|||
chance = 30,
|
||||
},
|
||||
hp = -2,
|
||||
groups = {mushroom = 1, food = 1, eatable =-2}
|
||||
},
|
||||
fly_agaric = {
|
||||
description = "fly agaric",
|
||||
|
@ -595,6 +597,7 @@ for name, ndata in pairs({
|
|||
chance = 30,
|
||||
},
|
||||
hp = -6,
|
||||
groups = {mushroom = 1, food = 1, eatable =-6}
|
||||
},
|
||||
lavashroom = {
|
||||
description = "Lavashroom",
|
||||
|
@ -613,6 +616,7 @@ for name, ndata in pairs({
|
|||
chance = 60,
|
||||
},
|
||||
hp = -1,
|
||||
groups = {mushroom = 1, food = 1, eatable =-1}
|
||||
},
|
||||
glowshroom = {
|
||||
description = "Glowshroom",
|
||||
|
@ -634,6 +638,7 @@ for name, ndata in pairs({
|
|||
chance = 320,
|
||||
},
|
||||
hp = -2,
|
||||
groups = {mushroom = 1, food = 1, eatable =-2}
|
||||
},
|
||||
nether_shroom = {
|
||||
description = "Nether mushroom",
|
||||
|
@ -648,6 +653,7 @@ for name, ndata in pairs({
|
|||
},
|
||||
burntime = 6,
|
||||
hp = -3,
|
||||
groups = {mushroom = 1, food = 1, eatable =-3}
|
||||
},
|
||||
parasol = {
|
||||
description = "white parasol mushroom",
|
||||
|
@ -667,6 +673,7 @@ for name, ndata in pairs({
|
|||
chance = 36,
|
||||
},
|
||||
hp = 3,
|
||||
groups = {mushroom = 1, food = 1, eatable =3, food_mushroom = 1}
|
||||
},
|
||||
red45 = {
|
||||
description = "45 red mushroom",
|
||||
|
@ -687,6 +694,7 @@ for name, ndata in pairs({
|
|||
chance = 180,
|
||||
},
|
||||
hp = 1,
|
||||
groups = {mushroom = 1, food = 1, eatable =1, food_mushroom = 1}
|
||||
},
|
||||
brown45 = {
|
||||
description = "45 brown mushroom",
|
||||
|
@ -706,6 +714,7 @@ for name, ndata in pairs({
|
|||
chance = 20,
|
||||
},
|
||||
hp = 1,
|
||||
groups = {mushroom = 1, food = 1, eatable =1, food_mushroom = 1}
|
||||
},
|
||||
}) do
|
||||
local burntime = ndata.burntime or 1
|
||||
|
@ -730,7 +739,7 @@ for name, ndata in pairs({
|
|||
buildable_to = true,
|
||||
drawtype = "nodebox",
|
||||
paramtype = "light",
|
||||
groups = {snappy=3,flammable=2,attached_node=1},
|
||||
groups = {snappy=3,flammable=2,attached_node=1, eatable = (ndata.hp)},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
node_box = box,
|
||||
selection_box = box,
|
||||
|
@ -1197,6 +1206,7 @@ minetest.register_craftitem("riesenpilz:mush45_meal", {
|
|||
description = "Mushroom Meal",
|
||||
inventory_image = "riesenpilz_mush45_meal.png",
|
||||
on_use = minetest.item_eat(6),
|
||||
groups = {eatable = 6, food = 2}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -1276,3 +1286,6 @@ if time > 0.05 then
|
|||
else
|
||||
minetest.log("info", msg)
|
||||
end
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue