Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Properties can be applied to a material to decide how they behave. An example of

## `Blast Furnace Properties`
- `.blastTemp()` is meant to be paired together with `.ingot()`. Will generate a EBF recipe (and an ABS recipe) based on the parameters you give it:
1. `int temperature` -> dictates what coil tier it will require (check the coil tooltips for their max temperature).
1. `int temperature` -> dictates what coil tier it will require (check the coil tooltips for their max temperature, or visit [Standard Coils](../Other-Topics/Custom-Coils.md#standard-coils)).
If the temperature is below 1000, it will also generate a PBF recipe.
If temperature is above 1750, a hot ingot will be generated, this requiring a Vacuum Freezer.
2. (optional) `string gasTier` -> can be `null` for none, `'low'` for nitrogen, `'mid'` for helium, `'high'` for argon, `'higher'` for neon or `'highest'` for krypton.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ All periodic table elements are present in GT, but some of them don't have any p
GTMaterials.Selenium.setProperty(PropertyKey.DUST, new $DustProperty());

// Blast Property
GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BlastProperty(8000, 'higher', GTValues.VA(GTValues.MV), 8000));
GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BlastProperty(8000, 'higher', GTValues.VA[GTValues.MV], 8000));

});
```
Expand Down Expand Up @@ -81,4 +81,4 @@ Editing the color of an existing material:
})
```

1. Most methods in the [``Material`` class](https://github.com/GregTechCEu/GregTech-Modern/blob/1.20.1/src/main/java/com/gregtechceu/gtceu/api/data/chemical/material/Material.java) can be used in the ``materialModification`` event
1. Most methods in the [``Material`` class](https://github.com/GregTechCEu/GregTech-Modern/blob/1.20.1/src/main/java/com/gregtechceu/gtceu/api/data/chemical/material/Material.java) can be used in the ``materialModification`` event