-
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.
Add Other Materials for Bromine Line (#38)
- Loading branch information
1 parent
4d1a5c3
commit dc11f2d
Showing
3 changed files
with
63 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
44 changes: 44 additions & 0 deletions
44
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,44 @@ | ||
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.unification.material.Material; | ||
|
||
public class LabsBromineLine { | ||
|
||
public static void initBromineLine() { | ||
MineralRichBrine = new Material.Builder(200, makeLabsName("mineralrichbrine")) | ||
.liquid() | ||
.color(0xd3dea0) | ||
.build(); | ||
|
||
DepletedBrine = new Material.Builder(201, makeLabsName("depletedbrine")) | ||
.liquid() | ||
.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")) | ||
.liquid() | ||
.color(0xff4f00) | ||
.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