diff --git a/dynamicspawncontrol-1.12.2/src/main/java/org/imesense/dynamicspawncontrol/technical/customlibrary/CmdCalledType.java b/dynamicspawncontrol-1.12.2/src/main/java/org/imesense/dynamicspawncontrol/technical/customlibrary/CmdCalledType.java new file mode 100644 index 0000000..0ec6e19 --- /dev/null +++ b/dynamicspawncontrol-1.12.2/src/main/java/org/imesense/dynamicspawncontrol/technical/customlibrary/CmdCalledType.java @@ -0,0 +1,60 @@ +package org.imesense.dynamicspawncontrol.technical.customlibrary; + +/** + * + */ +public enum CmdCalledType +{ + /** + * + */ + HIT("[Hit]"), + + /** + * + */ + CMD("[Command]"), + + /** + * + */ + TIMER("[Timer]"), + + /** + * + */ + SIGNAL("[Signal]"), + + /** + * + */ + MESSAGE("[Message]"), + + /** + * + */ + ITEM_DROP("[Item drop]"); + + /** + * + */ + private final String description; + + /** + * + * @param description + */ + CmdCalledType(String description) + { + this.description = description; + } + + /** + * + * @return + */ + public String getDescription() + { + return this.description; + } +} diff --git a/dynamicspawncontrol-1.12.2/src/main/java/org/imesense/dynamicspawncontrol/technical/customlibrary/TextEnumColors.java b/dynamicspawncontrol-1.12.2/src/main/java/org/imesense/dynamicspawncontrol/technical/customlibrary/TextEnumColors.java new file mode 100644 index 0000000..2b9f4fd --- /dev/null +++ b/dynamicspawncontrol-1.12.2/src/main/java/org/imesense/dynamicspawncontrol/technical/customlibrary/TextEnumColors.java @@ -0,0 +1,77 @@ +package org.imesense.dynamicspawncontrol.technical.customlibrary; + +/** + * + */ +public enum TextEnumColors +{ + /** + * + */ + RED("c"), + + /** + * + */ + AQUA("b"), + + /** + * + */ + GOLD("6"), + + /** + * + */ + GRAY("7"), + + /** + * + */ + BLUE("9"), + + /** + * + */ + WHITE("f"), + + /** + * + */ + GREEN("a"), + + /** + * + */ + BLACK("0"), + + /** + * + */ + PURPLE("d"), + + /** + * + */ + YELLOW("e"); + + private final String code; + + /** + * + * @param code + */ + TextEnumColors(String code) + { + this.code = code; + } + + /** + * + * @return + */ + public String getCode() + { + return this.code; + } +}