stuff for core pr (#1612)
* Add files via upload Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Add files via upload Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Add files via upload Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Add files via upload Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Add files via upload Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Add files via upload Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Add files via upload Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Add files via upload Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Add files via upload Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Update items.food.js Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Update constants.js Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Update data.js Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Update recipes.food.js Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> --------- Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>
This commit is contained in:
parent
60727603a6
commit
9e9b5bfb55
29 changed files with 1917 additions and 3 deletions
|
|
@ -140,6 +140,32 @@ const registerTFGFoodData = (event) => {
|
|||
food.decayModifier(2.25)
|
||||
})
|
||||
|
||||
event.foodItem('tfg:food/raw_glacian_mutton', food => {
|
||||
food.hunger(4)
|
||||
food.protein(2.0)
|
||||
food.decayModifier(3)
|
||||
})
|
||||
|
||||
event.foodItem('tfg:food/cooked_glacian_mutton', food => {
|
||||
food.hunger(6)
|
||||
food.saturation(3)
|
||||
food.protein(5)
|
||||
food.decayModifier(1.5)
|
||||
})
|
||||
|
||||
event.foodItem('tfg:food/raw_sniffer_beef', food => {
|
||||
food.hunger(4)
|
||||
food.protein(2.0)
|
||||
food.decayModifier(3)
|
||||
})
|
||||
|
||||
event.foodItem('tfg:food/cooked_sniffer_beef', food => {
|
||||
food.hunger(6)
|
||||
food.saturation(4)
|
||||
food.protein(7)
|
||||
food.decayModifier(1.5)
|
||||
})
|
||||
|
||||
// high-tech food
|
||||
|
||||
global.FOOD_FRUIT.forEach(fruit => {
|
||||
|
|
@ -512,4 +538,4 @@ const registerTFGFLPlanters = (event) => {
|
|||
],
|
||||
null
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue