aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/pers/gwyog/gtneioreplugin/util/Oremix.java
diff options
context:
space:
mode:
authorglowredman <35727266+glowredman@users.noreply.github.com>2023-07-30 12:36:48 +0200
committerGitHub <noreply@github.com>2023-07-30 12:36:48 +0200
commit0e59b438c9ee1da685a109db139eb82b8fcf6084 (patch)
tree51340dc9edf95987eca2d5f10c0d6593073c59b6 /src/main/java/pers/gwyog/gtneioreplugin/util/Oremix.java
parentaa3b5f43be8a58619b0bdc15a8a9e2309de8365e (diff)
downloadGT5-Unofficial-0e59b438c9ee1da685a109db139eb82b8fcf6084.tar.gz
GT5-Unofficial-0e59b438c9ee1da685a109db139eb82b8fcf6084.tar.bz2
GT5-Unofficial-0e59b438c9ee1da685a109db139eb82b8fcf6084.zip
T9 Planets + new Textures (#35)
* Add T9 planets ... and move Deep Dark to T10 * Update buildscript * Apply spotless * Make all six side use different icons * Apply spotless
Diffstat (limited to 'src/main/java/pers/gwyog/gtneioreplugin/util/Oremix.java')
-rw-r--r--src/main/java/pers/gwyog/gtneioreplugin/util/Oremix.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/main/java/pers/gwyog/gtneioreplugin/util/Oremix.java b/src/main/java/pers/gwyog/gtneioreplugin/util/Oremix.java
index d17e020db7..401cadc09f 100644
--- a/src/main/java/pers/gwyog/gtneioreplugin/util/Oremix.java
+++ b/src/main/java/pers/gwyog/gtneioreplugin/util/Oremix.java
@@ -99,6 +99,24 @@ public class Oremix {
@CsvCustomBindByName(column = "T Ceti E", converter = XtoBool.class)
public boolean tcetie;
+ @CsvCustomBindByName(column = "Anubis", required = false, converter = XtoBool.class)
+ public boolean an;
+
+ @CsvCustomBindByName(column = "Horus", required = false, converter = XtoBool.class)
+ public boolean ho;
+
+ @CsvCustomBindByName(column = "Neper", required = false, converter = XtoBool.class)
+ public boolean np;
+
+ @CsvCustomBindByName(column = "Maahes", required = false, converter = XtoBool.class)
+ public boolean mh;
+
+ @CsvCustomBindByName(column = "Mehen Belt", required = false, converter = XtoBool.class)
+ public boolean mb;
+
+ @CsvCustomBindByName(column = "Seth", required = false, converter = XtoBool.class)
+ public boolean se;
+
@CsvCustomBindByName(column = "Ore Name", required = true, converter = Veinrenamer.class)
private String oreName;
@@ -393,6 +411,54 @@ public class Oremix {
this.tcetie = tcetie;
}
+ public boolean isAn() {
+ return an;
+ }
+
+ public void setAn(boolean an) {
+ this.an = an;
+ }
+
+ public boolean isHo() {
+ return ho;
+ }
+
+ public void setHo(boolean ho) {
+ this.ho = ho;
+ }
+
+ public boolean isNp() {
+ return np;
+ }
+
+ public void setNp(boolean np) {
+ this.np = np;
+ }
+
+ public boolean isMh() {
+ return mh;
+ }
+
+ public void setMh(boolean mh) {
+ this.mh = mh;
+ }
+
+ public boolean isMb() {
+ return mb;
+ }
+
+ public void setMb(boolean mb) {
+ this.mb = mb;
+ }
+
+ public boolean isSe() {
+ return se;
+ }
+
+ public void setSe(boolean se) {
+ this.se = se;
+ }
+
public String getOreName() {
return this.oreName;
}