I ran into a new issue, I tried to replicate GT:NH's Black Plutonium, so I coded:
GTCEuStartupEvents.registry('gtceu:element', event => {
event.create('sp')
.protons(1000000)
.neutrons(1000000)
.halfLifeSeconds(-1)
.decayTo(null)
.symbol('Sp')
.isIsotope(false)
})
GTCEuStartupEvents.registry('gtceu:material', event => {
event.create('black_plutonium')
.ingot()
.components('1x sp', '1x plutonium')
.color(0x222222).iconSet(GTMaterialIconSet.ROUGH)
.flags(
GTMaterialFlags.GENERATE_PLATE
)
})
But the actual result presented is like the attatched image.
It only has plutonium in it.
GT Modern Version: v7.4.1

