cleanup scripts for launch

fixed syntax + unified unnecessary files
This commit is contained in:
mina
2023-12-17 22:42:58 +00:00
parent 1012487e69
commit efdda8cedd
35 changed files with 922 additions and 828 deletions

View File

@@ -1,7 +1,18 @@
GTCEuStartupEvents.registry('gtceu:material', event => {
event.create('fluix')
.dust()
.components('1x nether_quartz', '1x certus_quartz', '1x redstone')
.color(0x8F5CCB).iconSet(GTMaterialIconSet.DULL)
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_GEAR)
})
GTCEuStartupEvents.registry("gtceu:material", (event) => {
event
.create("fluix")
.dust()
.components("1x nether_quartz", "1x certus_quartz", "1x redstone")
.color(0x8f5ccb)
.iconSet(GTMaterialIconSet.DULL)
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_GEAR);
/*
event
.create("netherite")
.components("1x gold", "1x tungsten", "1x platinum")
.color(0x4d494d)
.iconSet(GTMaterialIconSet.METALLIC)
.flags(GTMaterialFlags.GENERATE_PLATE);
*/
});