changed copper diving equipment durability to match copper armor, all diving equipment now copies any forging bonuses
This commit is contained in:
parent
3eebef1616
commit
1f507feefa
3 changed files with 84 additions and 69 deletions
|
|
@ -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
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue