Initial EMI++ Implementation (#3285)

* Initial EMI++ Implementation, still WIP

* oops, old file

* Code refactor; additional groups

* Separated gtceu:molds into 2 types

* Added missing tags to a few mods

* Added tags to 2 tfc addons

* Brick tag fix; all brick blocks go to one group

* en_US lang file

* small fixes; tfg aqueducts are now tfc

---------

Signed-off-by: Pyritie <pyritie@gmail.com>
Co-authored-by: Pyritie <pyritie@gmail.com>
This commit is contained in:
Sakura
2026-03-08 17:04:43 +02:00
committed by GitHub
parent 9d20581a88
commit 0db2cae9d5
27 changed files with 689 additions and 9 deletions

View File

@@ -69,6 +69,12 @@ function registerGTCEUItemTags(event) {
//greens
event.add('tfc:compost_greens', 'gtceu:bio_chaff');
event.add('tfc:compost_greens', 'gtceu:plant_ball');
// lamp tag for EMI++
global.MINECRAFT_DYE_NAMES.forEach(color => {
event.add('gtceu:lamps', `gtceu:${color}_lamp`)
event.add('gtceu:lamps', `gtceu:${color}_borderless_lamp`)
})
}
/** @param {TagEvent.Block} event */