add new skulls to mars, update loot tables, add new recipes, hide items
This commit is contained in:
parent
34c4bb5fb4
commit
90535daf1a
12 changed files with 437 additions and 269 deletions
35
kubejs/server_scripts/wan_ancient_beasts/data.js
Normal file
35
kubejs/server_scripts/wan_ancient_beasts/data.js
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
// priority: 0
|
||||
"use strict";
|
||||
|
||||
const registerWABData = (event) => {
|
||||
|
||||
event.foodItem('wan_ancient_beasts:toxlacanth', food => {
|
||||
food.hunger(2)
|
||||
food.protein(1.5)
|
||||
food.decayModifier(3)
|
||||
})
|
||||
|
||||
event.foodItem('wan_ancient_beasts:cooked_toxlacanth', food => {
|
||||
food.hunger(4)
|
||||
food.saturation(2)
|
||||
food.protein(2.5)
|
||||
food.decayModifier(2.25)
|
||||
})
|
||||
|
||||
// Eater meat
|
||||
event.foodItem('wan_ancient_beasts:raw_ancient_meat', food => {
|
||||
food.hunger(2)
|
||||
food.protein(2)
|
||||
food.decayModifier(3)
|
||||
})
|
||||
|
||||
event.foodItem('wan_ancient_beasts:cooked_ancient_meat', food => {
|
||||
food.hunger(4)
|
||||
food.saturation(3)
|
||||
food.protein(5)
|
||||
food.decayModifier(2.25)
|
||||
})
|
||||
|
||||
|
||||
event.itemSize('wan_ancient_beasts:reinforced_shield', 'very_large', 'very_heavy')
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue