updated kubejs conf

This commit is contained in:
illuc 2026-03-04 10:48:15 +02:00
parent 80fd013356
commit 67612ec6ff
3 changed files with 28 additions and 0 deletions

View file

@ -310,6 +310,7 @@ ServerEvents.recipes(event => {
registerCreateRadarsRecipes(event) registerCreateRadarsRecipes(event)
registerNeuralgiaCoreRecipes(event) registerNeuralgiaCoreRecipes(event)
registerReinsmodRecipes(event) registerReinsmodRecipes(event)
registerSimpleRadioRecipes(event)
}) })
TaCZServerEvents.gunIndexLoad((event) => { TaCZServerEvents.gunIndexLoad((event) => {

View file

@ -3,5 +3,25 @@
function registerPrototypePainRecipes(event) { function registerPrototypePainRecipes(event) {
event.remove({ mod: 'prototype_pain' }) event.remove({ mod: 'prototype_pain' })
event.shaped('1x prototype_pain:splint', [
'S T',
'CL ',
'S '
], {
L: '#tfc:lumber',
S: '#forge:string',
C: '#forge:cloth',
T: '#forge:tools/saws',
}).id('neuralgia:splint')
event.shaped('1x prototype_pain:tourniquet', [
'NSN',
'S S',
' S '
], {
S: '#forge:string',
N: '#forge:nuggets'
}).id('neuralgia:tourniquet')
} }

View file

@ -0,0 +1,7 @@
// priority: 0
"use strict";
function registerSimpleRadioRecipes(event) {
event.remove({ mod: 'simpleradio' })
}