-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Materials for HM Rare Earth line (#36)
- Loading branch information
1 parent
871d0fd
commit 8513461
Showing
3 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
...main/java/com/nomiceu/nomilabs/gregtech/material/registry/register/LabsRareEarthLine.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
package com.nomiceu.nomilabs.gregtech.material.registry.register; | ||
|
||
import static com.nomiceu.nomilabs.gregtech.material.registry.LabsMaterials.*; | ||
import static com.nomiceu.nomilabs.util.LabsNames.makeLabsName; | ||
import static gregtech.api.unification.material.Materials.*; | ||
import static gregtech.api.unification.material.info.MaterialFlags.*; | ||
import static gregtech.api.unification.material.info.MaterialIconSet.*; | ||
|
||
import gregtech.api.fluids.FluidBuilder; | ||
import gregtech.api.unification.material.Material; | ||
|
||
public class LabsRareEarthLine { | ||
|
||
public static void initRareEarthLine() { | ||
RareEarthOxideConcentrate = new Material.Builder(118, makeLabsName("rare_earth_oxide_concentrate")) // Hardmode | ||
// Material | ||
.dust() | ||
.color(0x394c04).iconSet(FINE) | ||
.flags(DISABLE_DECOMPOSITION) | ||
.build(); | ||
RoastedRareEarthOxideConcentrate = new Material.Builder(119, | ||
makeLabsName("roasted_rare_earth_oxide_concentrate")) // Hardmode Material | ||
.dust() | ||
.color(0x182100).iconSet(ROUGH) | ||
.flags(DISABLE_DECOMPOSITION) | ||
.build(); | ||
LeachedRareEarthOxide = new Material.Builder(120, makeLabsName("leached_rare_earth_oxide")) // Hardmode | ||
// Material | ||
.dust() | ||
.color(0x4c5632).iconSet(DULL) | ||
.flags(DISABLE_DECOMPOSITION) | ||
.build(); | ||
TrivalentRareEarths = new Material.Builder(121, makeLabsName("trivalent_rare_earths")) // Hardmode Material | ||
.dust() | ||
.color(0xa7ea8c).iconSet(METALLIC) | ||
.flags(DISABLE_DECOMPOSITION) | ||
.build(); | ||
CeriumConcentrate = new Material.Builder(122, makeLabsName("cerium_concentrate")) // Hardmode Material | ||
.dust() | ||
.color(0xef654c).iconSet(DULL) | ||
.flags(DISABLE_DECOMPOSITION) | ||
.build(); | ||
DissolvedCeriumConcentrate = new Material.Builder(123, makeLabsName("dissolved_cerium_concentrate")) // Hardmode | ||
// Material | ||
.liquid() | ||
.color(0xc1796c) | ||
.flags(DISABLE_DECOMPOSITION) | ||
.build(); | ||
VaporousNitricAcid = new Material.Builder(124, makeLabsName("vaporous_nitric_acid")) | ||
.liquid(new FluidBuilder().temperature(356)) | ||
.color(0xeaf293) | ||
.components(Hydrogen, 1, Nitrogen, 1, Oxygen, 3) | ||
.build(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters