* stuff * Create wraptor.json * Update tags.js * fix wool * eggs * Update constants.js * more recipe stuff * doing tooltips the correct way * oops Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * oops * eater mixin stuff * add sandworm+dep to pakku * new configs I think * soulbind recipes * thumper * Update main_server_script.js * Update pakku-lock.json * sack configs * Update sns-server.toml * Update sns-server.toml * sack recipes and stuff * Create soulbinding-common.toml * soulbind fix * Update pakku-lock.json Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Update recipes.js * Update recipes.js * Delete EffekseerNativeForJava.dll Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Update .gitignore --------- Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>
15 lines
No EOL
432 B
JavaScript
15 lines
No EOL
432 B
JavaScript
// priority: 0
|
|
"use strict";
|
|
|
|
const registerSandwormRecipes = (event) => {
|
|
|
|
event.remove({ mod: 'sandworm_mod'})
|
|
|
|
event.recipes.gtceu.assembler('sandworm_mod:thumper')
|
|
.itemInputs('6x #forge:plates/maraging_steel_300', '#gtceu:circuits/iv', 'gtceu:ev_electric_piston')
|
|
.inputFluids(Fluid.of('gtceu:radon', 100))
|
|
.itemOutputs('sandworm_mod:thumper')
|
|
.duration(200)
|
|
.circuit(10)
|
|
.EUt(GTValues.VA[GTValues.EV]*2);
|
|
} |