init
This commit is contained in:
commit
2d26db1c5b
38 changed files with 2837 additions and 0 deletions
27
interoperability/mobs.lua
Normal file
27
interoperability/mobs.lua
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
-- Mobs Redo Animals
|
||||
--
|
||||
-- Author TenPlus1
|
||||
-- Forums https://forum.luanti.org/viewtopic.php?t=9917
|
||||
-- VCS https://notabug.org/TenPlus1/mobs_animal
|
||||
--
|
||||
-- The mob mods register their stuff with the `mobs` prefix in the `mobs` mod.
|
||||
|
||||
|
||||
local add = hunger_ng.add_hunger_data
|
||||
|
||||
add('mobs:cheese', { satiates = 2.5 })
|
||||
add('mobs:chicken_cooked', { satiates = 5 })
|
||||
add('mobs:chicken_egg_fried', { satiates = 2 })
|
||||
add('mobs:chicken_raw', { satiates = 2, heals = -2 })
|
||||
add('mobs:honey', { satiates = 2 })
|
||||
add('mobs:meat', { satiates = 5.5 })
|
||||
add('mobs:meat_raw', { satiates = 2.5, heals = -1 })
|
||||
add('mobs:meatblock', { satiates = 5.5 * 9 })
|
||||
add('mobs:meatblock_raw', { satiates = 2.5 * 9, heals = -1 * 9 })
|
||||
add('mobs:mutton_cooked', { satiates = 6, heals = 1 })
|
||||
add('mobs:mutton_raw', { satiates = 2, heals = -1 })
|
||||
add('mobs:pork_cooked', { satiates = 4 })
|
||||
add('mobs:pork_raw', { satiates = 1 })
|
||||
add('mobs:rabbit_cooked', { satiates = 4.5 })
|
||||
add('mobs:rabbit_raw', { satiates = 2, heals = -1 })
|
||||
add('mobs:rat_cooked', { satiates = 1.5 })
|
||||
Loading…
Add table
Add a link
Reference in a new issue