From 7896b5f7fdad12bd9ad42913a708c6fd7463a0d3 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 9 Dec 2025 15:40:22 +0000 Subject: [PATCH] doubled the durability of space suits --- CHANGELOG.md | 1 + kubejs/startup_scripts/ad_astra/modifications.js | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2b3b8560..d7f811b58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Unreleased ### Changes +- Doubled the durability of all space suits @Pyritie ### Bug fixes ### Translation updates diff --git a/kubejs/startup_scripts/ad_astra/modifications.js b/kubejs/startup_scripts/ad_astra/modifications.js index fbdf2b383..31a8be6fd 100644 --- a/kubejs/startup_scripts/ad_astra/modifications.js +++ b/kubejs/startup_scripts/ad_astra/modifications.js @@ -31,4 +31,20 @@ function registerAdAstraBlockModifications(event) { event.modify('ad_astra:aeronos_cap', block => { block.lightEmission = 0 }) + + const space_suits = [ + 'ad_astra:space_helmet', + 'ad_astra:space_suit', + 'ad_astra:space_pants', + 'ad_astra:space_boots', + 'ad_astra:netherite_space_helmet', + 'ad_astra:netherite_space_suit', + 'ad_astra:netherite_space_pants', + 'ad_astra:netherite_space_boots' + ] + space_suits.forEach(e => { + event.modify(e, item => { + item.maxDamage = item.maxDamage * 2 + }) + }) } \ No newline at end of file