increased durability of blue steel diving suit
This commit is contained in:
parent
706db40033
commit
435f514db2
4 changed files with 26 additions and 1 deletions
17
kubejs/startup_scripts/create/modifications.js
Normal file
17
kubejs/startup_scripts/create/modifications.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// priority: 0
|
||||
|
||||
function registerCreateItemModifications(event) {
|
||||
|
||||
// Change durability to match blue steel armor
|
||||
|
||||
event.modify('create:netherite_diving_helmet', item => {
|
||||
item.maxDamage = 748
|
||||
})
|
||||
event.modify('create:netherite_backtank', item => {
|
||||
item.maxDamage = 1088
|
||||
})
|
||||
event.modify('create:netherite_diving_boots', item => {
|
||||
item.maxDamage = 860
|
||||
})
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue