changed copper diving equipment durability to match copper armor, all diving equipment now copies any forging bonuses

This commit is contained in:
Pyritie 2025-06-04 21:59:56 +01:00
parent 3eebef1616
commit 1f507feefa
3 changed files with 84 additions and 69 deletions

View file

@ -2,8 +2,16 @@
function registerCreateItemModifications(event) {
// Change durability to match blue steel armor
// Change durability to match armor
event.modify('create:copper_diving_helmet', item => {
item.maxDamage = 150
})
event.modify('create:copper_backtank', item => {
item.maxDamage = 215
})
event.modify('create:copper_diving_boots', item => {
item.maxDamage = 160
})
event.modify('create:netherite_diving_helmet', item => {
item.maxDamage = 748
})