From d41827abdc9bd4118ec107c7a05786fdd1e7454a Mon Sep 17 00:00:00 2001 From: Pyritie Date: Fri, 22 Aug 2025 22:56:06 +0100 Subject: [PATCH] oh you can just change this in the config! that's cool. Also changed the infinity wand recipe --- CHANGELOG.md | 1 + defaultconfigs/constructionwand-server.toml | 6 +++--- .../server_scripts/constructionwand/recipes.js | 5 ++--- .../constructionwand/modifications.js | 17 ----------------- kubejs/startup_scripts/main_startup_script.js | 1 - 5 files changed, 6 insertions(+), 24 deletions(-) delete mode 100644 kubejs/startup_scripts/constructionwand/modifications.js diff --git a/CHANGELOG.md b/CHANGELOG.md index cd8841714..1bdaf1a25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ - Alabaster is now renewable via rock breaker @gustovafing - Added a new ore vein to all dimensions for gypsum, calcite, borax, and fuller's earth @Pyritie - Added some more moon ore veins for copper, tin, gold, aluminium.. nothing exciting @Pyritie +- Changed the recipe for the infinity construction wand @Pyritie ### Bug fixes - Fixed moon mob spawning light levels, so now they need a light level of 0 instead of 11 (#1587) @NINAustinFett - Fixed wrong output amount of mortaring soybean paste (#1607) @TomPlop diff --git a/defaultconfigs/constructionwand-server.toml b/defaultconfigs/constructionwand-server.toml index 220eb0a35..cec3045fc 100644 --- a/defaultconfigs/constructionwand-server.toml +++ b/defaultconfigs/constructionwand-server.toml @@ -8,7 +8,7 @@ [stone_wand] #Wand durability #Range: > 1 - durability = 131 + durability = 791 #Wand block limit #Range: > 1 limit = 9 @@ -24,7 +24,7 @@ [iron_wand] #Wand durability #Range: > 1 - durability = 250 + durability = 2303 #Wand block limit #Range: > 1 limit = 27 @@ -40,7 +40,7 @@ [diamond_wand] #Wand durability #Range: > 1 - durability = 1561 + durability = 12286 #Wand block limit #Range: > 1 limit = 128 diff --git a/kubejs/server_scripts/constructionwand/recipes.js b/kubejs/server_scripts/constructionwand/recipes.js index 4cb343b04..735911c33 100644 --- a/kubejs/server_scripts/constructionwand/recipes.js +++ b/kubejs/server_scripts/constructionwand/recipes.js @@ -45,13 +45,12 @@ function registerConstructionwandRecipes(event) { event.shaped('1x constructionwand:infinity_wand', [ ' EB', ' C ', - 'AD ' + 'A ' ], { A: '#forge:rods/polytetrafluoroethylene', C: '#forge:rods/long/aluminium', B: '#forge:double_plates/titanium', - D: '#gtceu:circuits/iv', - E: 'minecraft:nether_star', + E: 'ae2:charged_certus_quartz_crystal', }).id('constructionwand:shaped/infinity_wand') event.shaped('1x constructionwand:core_angel', [ diff --git a/kubejs/startup_scripts/constructionwand/modifications.js b/kubejs/startup_scripts/constructionwand/modifications.js deleted file mode 100644 index 89426c237..000000000 --- a/kubejs/startup_scripts/constructionwand/modifications.js +++ /dev/null @@ -1,17 +0,0 @@ -// priority: 0 -"use strict"; - -function registerConstructionWandsItemModifications(event) { - - // Increase durability of all construction wands - - event.modify('constructionwand:stone_wand', item => { - item.maxDamage = 791 - }) - event.modify('constructionwand:iron_wand', item => { - item.maxDamage = 2303 - }) - event.modify('constructionwand:diamond_wand', item => { - item.maxDamage = 12286 - }) -} \ No newline at end of file diff --git a/kubejs/startup_scripts/main_startup_script.js b/kubejs/startup_scripts/main_startup_script.js index 49568b2de..89d4001af 100644 --- a/kubejs/startup_scripts/main_startup_script.js +++ b/kubejs/startup_scripts/main_startup_script.js @@ -23,7 +23,6 @@ BlockEvents.modification(event => { ItemEvents.modification(event => { registerBeneathItemModifications(event) - registerConstructionWandsItemModifications(event) registerCreateItemModifications(event) registerFirmalifeItemModifications(event) registerGTCEuItemModifications(event)