added dinosaur nuggies
This commit is contained in:
parent
2f1ac192af
commit
b3fdbd1571
9 changed files with 87 additions and 12 deletions
|
|
@ -454,8 +454,8 @@ function registerTFGFoodData(event) {
|
|||
|
||||
event.foodItem("tfg:food/cooked_long_pig_filet", (food) => {
|
||||
food.hunger(6);
|
||||
food.saturation(3);
|
||||
food.protein(5);
|
||||
food.saturation(2);
|
||||
food.protein(2);
|
||||
food.decayModifier(1.5);
|
||||
});
|
||||
|
||||
|
|
@ -677,6 +677,19 @@ function registerTFGFoodData(event) {
|
|||
food.vegetables(2);
|
||||
});
|
||||
|
||||
event.foodItem('tfg:food/raw_dino_nugget', (food) => {
|
||||
food.type("dynamic");
|
||||
food.hunger(1);
|
||||
food.decayModifier(3);
|
||||
});
|
||||
|
||||
event.foodItem('tfg:food/cooked_dino_nugget', (food) => {
|
||||
food.type("dynamic");
|
||||
food.hunger(3);
|
||||
food.saturation(2);
|
||||
food.decayModifier(1.5);
|
||||
});
|
||||
|
||||
// misc
|
||||
|
||||
event.foodItem("tfg:food/ice_soup", (food) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue