tarkianite vein

This commit is contained in:
Pyritie 2025-11-29 01:01:38 +00:00
parent 930082492f
commit d779c5c92e
27 changed files with 1143 additions and 57 deletions

View file

@ -304,8 +304,6 @@ const registerGTCEuMaterialModification = (event) => {
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.Rhenium.setProperty(PropertyKey.DUST, new $DustProperty());
// Tools
GTMaterials.Stone.setProperty(PropertyKey.TOOL, ToolProperty.Builder.of(1.2, 1.0, 8, 1, [
GTToolType.AXE,
@ -420,6 +418,7 @@ const registerGTCEuMaterialModification = (event) => {
GTMaterials.GraniteRed.setMaterialARGB(0x974B3C)
GTMaterials.GraniteRed.setMaterialSecondaryARGB(0x632117)
GTMaterials.RhodiumPlatedPalladium.setMaterialARGB(0xFFC2EC)
GTMaterials.Rhenium.setMaterialARGB(0x8cb07f)
GTMaterials.Rhenium.setMaterialSecondaryARGB(0x9ccbd6)

View file

@ -38,6 +38,16 @@ const registerTFGMaterials = (event) => {
.color(0xfbdf82)
.secondaryColor(0xff9d2e)
// Ores
event.create('tarkianite')
.ore()
.components('1x copper', '1x iron', '4x rhenium', '4x molybdenum', '8x sulfur')
.color(0x8bb054)
.secondaryColor(0x3d8021)
.iconSet(GTMaterialIconSet.getByName('tfc_emerald'))
.addOreByproducts('sulfur', 'rhenium', 'molybdenum')
// Cooking
event.create('lactose')
@ -192,7 +202,7 @@ const registerTFGMaterials = (event) => {
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xfeff5d)
//#endregion
event.create('liquid_carbon_dioxide')
.liquid(100) //Not realistic but I want it to be cryogenic
.components('1x carbon', '2x oxygen')