neuralgia/kubejs/startup_scripts/main_startup_script.js
Pyritie 3d7c02ccf3
Update main_startup_script.js
Signed-off-by: Pyritie <pyritie@gmail.com>
2025-01-11 18:22:19 +00:00

56 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// priority: 1
/**
* Событие регистрации предметов.
*/
StartupEvents.registry('item', event => {
registerGTCEuItems(event)
})
/**
* Событие регистрации блоков.
*/
StartupEvents.registry('block', event => {
registerGTCEuBlocks(event)
registerTFGBlocks(event)
})
/**
* Событие изменения блоков.
*/
BlockEvents.modification(event => {
modifyFirmaCivBlocks(event)
})
/**
* Событие изменения предметов.
*/
ItemEvents.modification(event => {})
/**
* Событие регистрации жидкостей.
*/
StartupEvents.registry('fluid', event => {
registerTFGFluids(event)
})
/**
* Событие регистрации типов рецептов.
*/
GTCEuStartupEvents.registry('gtceu:recipe_type', event => {
registerGTCEuRecipeTypes(event)
})
/**
* Событие регистрации механизмов.
*/
GTCEuStartupEvents.registry('gtceu:machine', event => {
registerGTCEuMachines(event)
})
/**
* Событие регистрации информации о составе предмета.
*/
// TFGStartupEvents.materialInfo(event => {
// registerGTCEuMaterialInfo(event)
// })