add rhenium
This commit is contained in:
parent
860cbcb155
commit
1372a3e17b
1 changed files with 6 additions and 0 deletions
|
|
@ -11,6 +11,7 @@ const registerGTCEuMaterialModification = (event) => {
|
||||||
const $TFC_PROPERTY = Java.loadClass('su.terrafirmagreg.core.compat.gtceu.properties.TFCProperty')
|
const $TFC_PROPERTY = Java.loadClass('su.terrafirmagreg.core.compat.gtceu.properties.TFCProperty')
|
||||||
const $ORE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.OreProperty')
|
const $ORE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.OreProperty')
|
||||||
const $INGOT_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.IngotProperty')
|
const $INGOT_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.IngotProperty')
|
||||||
|
const $DustProperty = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.DustProperty');
|
||||||
const $BLAST_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.BlastProperty')
|
const $BLAST_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.BlastProperty')
|
||||||
const $ITEM_PIPE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.ItemPipeProperties')
|
const $ITEM_PIPE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.ItemPipeProperties')
|
||||||
const $FLUID_PIPE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.FluidPipeProperties')
|
const $FLUID_PIPE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.FluidPipeProperties')
|
||||||
|
|
@ -298,10 +299,14 @@ const registerGTCEuMaterialModification = (event) => {
|
||||||
GTMaterials.Plutonium239.addFlags(GENERATE_ROD, NO_ORE_PROCESSING_TAB, NO_ORE_SMELTING)
|
GTMaterials.Plutonium239.addFlags(GENERATE_ROD, NO_ORE_PROCESSING_TAB, NO_ORE_SMELTING)
|
||||||
GTMaterials.Thorium.addFlags(NO_ORE_SMELTING)
|
GTMaterials.Thorium.addFlags(NO_ORE_SMELTING)
|
||||||
|
|
||||||
|
// Unhiding elements
|
||||||
GTMaterials.Zirconium.addFlags(GENERATE_FINE_WIRE, GENERATE_PLATE, NO_ORE_SMELTING);
|
GTMaterials.Zirconium.addFlags(GENERATE_FINE_WIRE, GENERATE_PLATE, NO_ORE_SMELTING);
|
||||||
GTMaterials.Zirconium.setProperty(PropertyKey.INGOT, new $INGOT_PROPERTY());
|
GTMaterials.Zirconium.setProperty(PropertyKey.INGOT, new $INGOT_PROPERTY());
|
||||||
GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BLAST_PROPERTY(4200, 'mid', GTValues.VA[GTValues.EV], 1300, GTValues.VA[GTValues.HV], 14.7*20));
|
GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BLAST_PROPERTY(4200, 'mid', GTValues.VA[GTValues.EV], 1300, GTValues.VA[GTValues.HV], 14.7*20));
|
||||||
|
|
||||||
|
GTMaterials.Rhenium.setProperty(PropertyKey.DUST, new $DustProperty());
|
||||||
|
|
||||||
|
// Tools
|
||||||
GTMaterials.Stone.setProperty(PropertyKey.TOOL, ToolProperty.Builder.of(1.2, 1.0, 8, 1, [
|
GTMaterials.Stone.setProperty(PropertyKey.TOOL, ToolProperty.Builder.of(1.2, 1.0, 8, 1, [
|
||||||
GTToolType.AXE,
|
GTToolType.AXE,
|
||||||
GTToolType.HARD_HAMMER,
|
GTToolType.HARD_HAMMER,
|
||||||
|
|
@ -415,6 +420,7 @@ const registerGTCEuMaterialModification = (event) => {
|
||||||
GTMaterials.GraniteRed.setMaterialARGB(0x974B3C)
|
GTMaterials.GraniteRed.setMaterialARGB(0x974B3C)
|
||||||
GTMaterials.GraniteRed.setMaterialSecondaryARGB(0x632117)
|
GTMaterials.GraniteRed.setMaterialSecondaryARGB(0x632117)
|
||||||
GTMaterials.RhodiumPlatedPalladium.setMaterialARGB(0xFFC2EC)
|
GTMaterials.RhodiumPlatedPalladium.setMaterialARGB(0xFFC2EC)
|
||||||
|
GTMaterials.Rhenium.setMaterialARGB(0x9ccbd6)
|
||||||
|
|
||||||
|
|
||||||
global.MINECRAFT_DYE_NAMES.forEach(colorName => {
|
global.MINECRAFT_DYE_NAMES.forEach(colorName => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue