* boiler and repair kit (#3367) * boiler and repair kit * update pakku * fix recipe id * fixes * fix duplicate on server * add boiler stuffs * Repair Kit and Boilers * bug * more fixes * more fixes * Small tweaks and increase cost Steel Pipe Casing * We gucci (#3387) * fix * Add a way to craft repair kit * add recipes for boiler * hv dynamo hatch and new recipes * add depreciated * Add repair kit textures and modify recipes for LST * add langfile * missing langfile * Add new quests * fix repair kit texture * add unfired repair kit * fix typo * fixes
18 lines
464 B
JavaScript
18 lines
464 B
JavaScript
// priority: 0
|
|
"use strict";
|
|
|
|
const registerGreateMaterialModification = (event) => {
|
|
|
|
const $GreateMaterials = Java.loadClass("electrolyte.greate.registry.GreateMaterials")
|
|
|
|
// Add flags
|
|
$GreateMaterials.RoseQuartz.addFlags(
|
|
GTMaterialFlags.GENERATE_LENS,
|
|
GTMaterialFlags.HIGH_SIFTER_OUTPUT,
|
|
GTMaterialFlags.CRYSTALLIZABLE
|
|
);
|
|
|
|
// Material composition
|
|
$GreateMaterials.AndesiteAlloy.setComponents([])
|
|
$GreateMaterials.AndesiteAlloy.setFormula("?")
|
|
} |