oh you can just change this in the config! that's cool. Also changed the infinity wand recipe

This commit is contained in:
Pyritie 2025-08-22 22:56:06 +01:00
parent 3bcbcf6d06
commit d41827abdc
5 changed files with 6 additions and 24 deletions

View file

@ -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

View file

@ -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

View file

@ -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', [

View file

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

View file

@ -23,7 +23,6 @@ BlockEvents.modification(event => {
ItemEvents.modification(event => {
registerBeneathItemModifications(event)
registerConstructionWandsItemModifications(event)
registerCreateItemModifications(event)
registerFirmalifeItemModifications(event)
registerGTCEuItemModifications(event)