-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Transfer bromine line to gt materials
- Loading branch information
1 parent
3ed84b0
commit a089ad7
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
src/main/java/com/nomiceu/nomilabs/gregtech/material/registry/register/LabsBromineLine.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,47 @@ | ||
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.fluids.attribute.FluidAttributes; | ||
import gregtech.api.unification.material.Material; | ||
|
||
public class LabsBromineLine { | ||
|
||
public static void initBromineLine() { | ||
MineralRichBrine = new Material.Builder(200, makeLabsName("mineralrichbrine")) | ||
.liquid(new FluidBuilder().attribute(FluidAttributes.LIQUID)) | ||
.color(0xd3dea0) | ||
.build(); | ||
|
||
DepletedBrine = new Material.Builder(201, makeLabsName("depletedbrine")) | ||
.liquid(new FluidBuilder().attribute(FluidAttributes.ACID)) | ||
.color(0xb4b57d) | ||
.build(); | ||
|
||
AlkalineBromineSolution = new Material.Builder(202, makeLabsName("alkalinebrominesolution")) | ||
.liquid() | ||
.color(0xd11a0d) | ||
.build(); | ||
|
||
DebrominatedWaste = new Material.Builder(203, makeLabsName("debrominatedwaste")) | ||
.liquid() | ||
.color(0xd13b0d) | ||
.build(); | ||
|
||
CrudeBromine = new Material.Builder(204, makeLabsName("crudebromine")) // Hardmode Material | ||
.liquid() | ||
.color(0xd64d22) | ||
.build(); | ||
|
||
BromineChlorineMixture = new Material.Builder(205, makeLabsName("brominechlorinemixture")) // Hardmode Material | ||
.liquid() | ||
.color(0xff4f00) | ||
.build(); | ||
|
||
} | ||
} |