Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Illuna-Minetest/hudbars
1 result
Show changes
Commits on Source (5)
hudbars hudbars
default? default?
xdecor? xdecor?
illuna_ethereal?
animalmaterials? animalmaterials?
bucket? bucket?
bushes? bushes?
......
...@@ -285,6 +285,39 @@ if minetest.get_modpath("creatures") ~= nil then ...@@ -285,6 +285,39 @@ if minetest.get_modpath("creatures") ~= nil then
overwrite("creatures:rotten_flesh", 3, "", 3) overwrite("creatures:rotten_flesh", 3, "", 3)
end end
if minetest.get_modpath("ethereal") then
overwrite("ethereal:strawberry", 1)
overwrite("ethereal:banana", 4)
overwrite("ethereal:pine_nuts", 1)
overwrite("ethereal:bamboo_sprout", 0, "", 3)
overwrite("ethereal:fern_tubers", 1)
overwrite("ethereal:banana_bread", 7)
overwrite("ethereal:mushroom_plant", 2)
overwrite("ethereal:coconut_slice", 2)
overwrite("ethereal:golden_apple", 4, "", nil, 10)
overwrite("ethereal:wild_onion_plant", 2)
overwrite("ethereal:mushroom_soup", 5, "ethereal:bowl")
overwrite("ethereal:hearty_stew", 10, "ethereal:bowl")
if minetest.get_modpath("bucket") then
overwrite("ethereal:bucket_cactus", 2, "bucket:bucket_empty")
end
overwrite("ethereal:fish_raw", 2)
overwrite("ethereal:fish_cooked", 5)
overwrite("ethereal:seaweed", 1)
overwrite("ethereal:yellowleaves", 1, "", nil, 1)
overwrite("ethereal:sashimi", 4)
overwrite("ethereal:orange", 2)
end
if minetest.get_modpath("illuna_ethereal") then
overwrite("illuna_ethereal:candyfloss_white", 2)
overwrite("illuna_ethereal:candyfloss_pink", 2)
end
if minetest.get_modpath("farming") and farming.mod == "redo" then if minetest.get_modpath("farming") and farming.mod == "redo" then
overwrite("farming:bread", 6) overwrite("farming:bread", 6)
overwrite("farming:potato", 1) overwrite("farming:potato", 1)
...@@ -387,6 +420,11 @@ if minetest.get_modpath("loud_walking") then ...@@ -387,6 +420,11 @@ if minetest.get_modpath("loud_walking") then
overwrite("loud_walking:mushroom_steak", 5) overwrite("loud_walking:mushroom_steak", 5)
end end
if minetest.get_modpath("bacon") then
overwrite("bacon:cooked", 8)
overwrite("bacon:raw", 4)
end
if minetest.get_modpath("mtcandy") then if minetest.get_modpath("mtcandy") then
overwrite("mtcandy:sugar_block", 4) overwrite("mtcandy:sugar_block", 4)
overwrite("mtcandy:caramel", 4) overwrite("mtcandy:caramel", 4)
......
...@@ -16,7 +16,7 @@ HUNGER_HUD_TICK = 0.5 -- 0.1 ...@@ -16,7 +16,7 @@ HUNGER_HUD_TICK = 0.5 -- 0.1
hbhunger.exhaustion = {} -- Exhaustion is experimental! hbhunger.exhaustion = {} -- Exhaustion is experimental!
HUNGER_HUNGER_TICK = 600 -- time in seconds after that 1 hunger point is taken (600) HUNGER_HUNGER_TICK = 600 -- time in seconds after that 1 hunger point is taken (600)
HUNGER_EXHAUST_DIG = 3 -- exhaustion increased this value after digged node HUNGER_EXHAUST_DIG = 1.5 -- exhaustion increased this value after digged node
HUNGER_EXHAUST_PLACE = 1 -- exhaustion increased this value after placed HUNGER_EXHAUST_PLACE = 1 -- exhaustion increased this value after placed
HUNGER_EXHAUST_MOVE = 0.3 -- exhaustion increased this value if player movement detected HUNGER_EXHAUST_MOVE = 0.3 -- exhaustion increased this value if player movement detected
HUNGER_EXHAUST_LVL = 160 -- at what exhaustion player satiation gets lowerd HUNGER_EXHAUST_LVL = 160 -- at what exhaustion player satiation gets lowerd
......