increased durability of blue steel diving suit

This commit is contained in:
Pyritie 2025-06-04 12:41:23 +01:00
parent 706db40033
commit 435f514db2
4 changed files with 26 additions and 1 deletions

View file

@ -15,6 +15,7 @@
- Anthracite now also superheats blaze burners @Pyritie
- Changed LV chem reactor quest to work with any container of rubber instead of just a rubber bucket (#1116) @ofoxsmith
- Added perfect overclock to the electric greenhouse so it scales better with the pyro oven @Pyritie
- Increased durability of the blue steel diving suit to match blue steel armor @Pyritie
### Bug fixes
- Fixed issue where "melts into" tooltips and certain timers on Jade were missing (#1102) @Xikaro
- Improved block ordering logic with AoE mining tools to reduce incorrect cave-ins @voidstar240
@ -27,7 +28,7 @@
- Fixed kaolin clay duping (#1099) @SpicyNoodle5
- Fixed TFC sugar recipes so they can now use any sugar (#1099) @SpicyNoodle5
- Add the create toolbox to the list of unsortable inventories, fixing a duping exploit (#1120) @esotericist
- Fixed assembler recipe for item silos
- Fixed assembler recipe for item silos @Pyritie
## [0.9.9] - 30.05.2025
### Changes

View 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
})
}

View file

@ -28,6 +28,7 @@ BlockEvents.modification(event => {
ItemEvents.modification(event => {
registerBeneathItemModifications(event)
registerConstructionWandsItemModifications(event)
registerCreateItemModifications(event)
registerMinecraftItemModifications(event)
})

View file

@ -20,4 +20,10 @@ function registerMinecraftItemModifications(event) {
event.modify('minecraft:elytra', item => {
item.maxDamage = 2046
})
// Matches blue steel greaves
event.modify('minecraft:netherite_leggings', item => {
item.maxDamage = 960
})
}