updated kubejs conf
This commit is contained in:
parent
80fd013356
commit
67612ec6ff
3 changed files with 28 additions and 0 deletions
|
|
@ -310,6 +310,7 @@ ServerEvents.recipes(event => {
|
|||
registerCreateRadarsRecipes(event)
|
||||
registerNeuralgiaCoreRecipes(event)
|
||||
registerReinsmodRecipes(event)
|
||||
registerSimpleRadioRecipes(event)
|
||||
})
|
||||
|
||||
TaCZServerEvents.gunIndexLoad((event) => {
|
||||
|
|
|
|||
20
kubejs/server_scripts/prototype_pain/recipes.js
vendored
20
kubejs/server_scripts/prototype_pain/recipes.js
vendored
|
|
@ -3,5 +3,25 @@
|
|||
|
||||
function registerPrototypePainRecipes(event) {
|
||||
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')
|
||||
|
||||
}
|
||||
|
|
|
|||
7
kubejs/server_scripts/simpleradio/recipes.js
Normal file
7
kubejs/server_scripts/simpleradio/recipes.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
// priority: 0
|
||||
"use strict";
|
||||
|
||||
function registerSimpleRadioRecipes(event) {
|
||||
event.remove({ mod: 'simpleradio' })
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue