Files
GregTech-Modern-Community-Pack/kubejs/startup_scripts/material_testing/material.js
mina 70744cfd93 script polishes
- removed crafting cover in recipes as it's uncraftable (ironic)
- fixed incorrect item names in storage drawer recipes
2023-12-22 22:56:44 +00:00

19 lines
519 B
JavaScript

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);
*/
});