init
This commit is contained in:
commit
2d26db1c5b
38 changed files with 2837 additions and 0 deletions
24
interoperability/bushes.lua
Normal file
24
interoperability/bushes.lua
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
-- Berry Bushes
|
||||
--
|
||||
-- Author jordan4ibanez
|
||||
-- Forums https://forum.luanti.org/viewtopic.php?t=14068
|
||||
-- VCS No VCS provided
|
||||
|
||||
|
||||
local add = hunger_ng.add_hunger_data
|
||||
|
||||
local berries = {
|
||||
'raspberry',
|
||||
'blackberry',
|
||||
'gooseberry',
|
||||
'strawberry',
|
||||
'mixed_berry',
|
||||
'blueberry'
|
||||
}
|
||||
|
||||
for _,berry in pairs(berries) do
|
||||
add('bushes:'..berry..'_pie_raw', { satiates = 2, heals = -2 })
|
||||
add('bushes:'..berry..'_pie_cooked', { satiates = 5 })
|
||||
add('bushes:'..berry..'_pie_slice', { satiates = 0.8 })
|
||||
add('bushes:'..berry, { satiates = 0.5 })
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue