Alpha Release: 0.9.0 (#849)
Signed-off-by: Pyritie <pyritie@gmail.com> Signed-off-by: TomPlop <tomdidome@gmail.com> Co-authored-by: Xikaro <os.valerievich@ya.ru> Co-authored-by: Nebby <78170922+Nebby1999@users.noreply.github.com> Co-authored-by: Redeix <brayden.j.m.ford@gmail.com> Co-authored-by: TomPlop <tomdidome@gmail.com> Co-authored-by: aidie8 <aidenvanzuilen@gmail.com> Co-authored-by: Xikaro <55663835+Xikaro@users.noreply.github.com> Co-authored-by: Zleub <debray.arnaud@gmail.com>
This commit is contained in:
parent
d344316e5a
commit
ec2e3cd3c4
2193 changed files with 104602 additions and 53195 deletions
|
|
@ -1,4 +1,4 @@
|
|||
// priority: 1
|
||||
// priority: 0
|
||||
|
||||
/**
|
||||
* Событие регистрации предметов.
|
||||
|
|
@ -12,7 +12,6 @@ StartupEvents.registry('item', event => {
|
|||
* Событие регистрации блоков.
|
||||
*/
|
||||
StartupEvents.registry('block', event => {
|
||||
registerGTCEuBlocks(event)
|
||||
registerTFGBlocks(event)
|
||||
})
|
||||
|
||||
|
|
@ -20,13 +19,16 @@ StartupEvents.registry('block', event => {
|
|||
* Событие изменения блоков.
|
||||
*/
|
||||
BlockEvents.modification(event => {
|
||||
modifyFirmaCivBlocks(event)
|
||||
// modifyFirmaCivBlocks(event)
|
||||
})
|
||||
|
||||
/**
|
||||
* Событие изменения предметов.
|
||||
*/
|
||||
ItemEvents.modification(event => {})
|
||||
ItemEvents.modification(event => {
|
||||
registerBeneathItemModifications(event)
|
||||
registerMinecraftItemModifications(event)
|
||||
})
|
||||
|
||||
/**
|
||||
* Событие регистрации жидкостей.
|
||||
|
|
@ -49,14 +51,42 @@ GTCEuStartupEvents.registry('gtceu:machine', event => {
|
|||
registerGTCEuMachines(event)
|
||||
})
|
||||
|
||||
GTCEuStartupEvents.registry('gtceu:material', event =>
|
||||
{
|
||||
/**
|
||||
* Событие регистрации тэг префиксов.
|
||||
*/
|
||||
GTCEuStartupEvents.registry('gtceu:tag_prefix', event => {
|
||||
registerAE2TagPrefixes(event)
|
||||
registerTFCTagPrefixes(event)
|
||||
registerGTCEuTagPrefixes(event)
|
||||
})
|
||||
|
||||
GTCEuStartupEvents.registry('gtceu:material', event => {
|
||||
registerAE2Materials(event)
|
||||
registerTFCMaterials(event)
|
||||
registerGTCEuMaterials(event)
|
||||
registerTFGMaterials(event)
|
||||
})
|
||||
|
||||
GTCEuStartupEvents.registry('gtceu:material_icon_set', event => {
|
||||
registerTFCIconSets(event)
|
||||
})
|
||||
|
||||
/**
|
||||
* Событие регистрации информации о составе предмета.
|
||||
*/
|
||||
// TFGStartupEvents.materialInfo(event => {
|
||||
// registerGTCEuMaterialInfo(event)
|
||||
// })
|
||||
* Событие модификации материалов.
|
||||
*/
|
||||
GTCEuStartupEvents.materialModification(event => {
|
||||
registerGTCEuMaterialModification(event)
|
||||
})
|
||||
|
||||
|
||||
//GTCEuStartupEvents.registry('gtceu:dimension_marker', event => {
|
||||
// event.create('ad_astra:earth_orbit')
|
||||
// .iconSupplier(() => Item.of('ad_astra:earth_globe').getItem())
|
||||
// .tier(0)
|
||||
// .overrideName('Earth Orbit')
|
||||
//})
|
||||
|
||||
|
||||
Platform.mods.kaolinclayze.name = "Primitive Creatures";
|
||||
Platform.mods.tfg.name = "TerraFirmaGreg";
|
||||
Platform.mods.kubejs.name = "TerraFirmaGreg";
|
||||
Loading…
Add table
Add a link
Reference in a new issue