2022-02-02 22:51:56 +01:00
|
|
|
package love.distributedrebirth.numberxd.base2t.part;
|
2022-01-28 11:19:52 +01:00
|
|
|
|
2022-02-02 18:06:12 +01:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinʸᴰ;
|
2022-02-02 18:29:34 +01:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
|
2022-02-02 18:06:12 +01:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinOpenʸᴰ;
|
2022-02-02 19:17:30 +01:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnClassInfoʸᴰ;
|
2022-01-30 18:05:18 +01:00
|
|
|
|
2022-02-02 18:29:34 +01:00
|
|
|
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
|
2022-02-02 19:17:30 +01:00
|
|
|
@BãßBȍőnClassInfoʸᴰ(name = "T05PartPental", purpose = "The distribution by 5 called Wuxing.")
|
|
|
|
|
@BãßBȍőnPartAlt1Infoʸᴰ(name = "Pentagram", website = "https://en.wikipedia.org/wiki/Pentagram")
|
|
|
|
|
@BãßBȍőnPartAlt2Infoʸᴰ(name = "Pythagorean Interpretations", website = "http://wisdomofhypatia.com/OM/BA/PP.html")
|
2022-02-02 18:32:23 +01:00
|
|
|
public enum T05PartPental implements BãßBȍőnPartAlt2ʸᴰ<T05PartPental> {
|
2022-01-28 11:19:52 +01:00
|
|
|
|
2022-02-03 01:07:12 +01:00
|
|
|
PART_1("˥","火","fire", "EI","heile"),
|
|
|
|
|
PART_2("˦","水","water","U", "hudor"),
|
|
|
|
|
PART_3("˧","木","wood" ,"I", "idea"),
|
|
|
|
|
PART_4("˨","金","gold", "A", "aer"),
|
|
|
|
|
PART_5("˩","土","earth","G", "gaia"),
|
2022-01-28 11:19:52 +01:00
|
|
|
;
|
|
|
|
|
|
2022-02-02 18:32:23 +01:00
|
|
|
private final BãßBȍőnCoffinOpenʸᴰ<BãßBȍőnPartKeyʸᴰ> BBC = BãßBȍőnCoffinOpenʸᴰ.newInstance();
|
|
|
|
|
public BãßBȍőnCoffinʸᴰ<BãßBȍőnPartKeyʸᴰ> GET_BBC() { return BBC; }
|
2022-01-31 20:13:41 +01:00
|
|
|
public static int LENGTH() { return values().length; };
|
2022-01-28 11:19:52 +01:00
|
|
|
|
2022-02-03 01:07:12 +01:00
|
|
|
private T05PartPental(String idTone, String chinaKey, String chinaValue, String alt1Value, String alt2Value) {
|
2022-02-02 18:32:23 +01:00
|
|
|
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.ID_TONE, idTone);
|
|
|
|
|
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.CHINA_KEY, chinaKey);
|
|
|
|
|
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.CHINA_VALUE, chinaValue);
|
|
|
|
|
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.ALT_1_VALUE, alt1Value);
|
|
|
|
|
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.ALT_2_VALUE, alt2Value);
|
|
|
|
|
BBC.PUT_MAP(BãßBȍőnPartKeyʸᴰ.MAP_TONE);
|
|
|
|
|
BBC.PUT_MAP(BãßBȍőnPartKeyʸᴰ.MAP_CHINA);
|
2022-01-28 11:19:52 +01:00
|
|
|
}
|
|
|
|
|
}
|