change to land.chipmunk.chayapak because yes

This commit is contained in:
ChomeNS
2023-03-27 12:53:05 +07:00
parent cb34dfff90
commit fbf9f3e2f1
70 changed files with 221 additions and 220 deletions

View File

@@ -1,64 +0,0 @@
package me.chayapak1.chomens_bot;
import lombok.Getter;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Configuration {
@Getter public List<String> prefixes;
@Getter public List<String> commandSpyPrefixes;
@Getter public Map<String, String> consolePrefixes;
@Getter public int reconnectDelay = 7000;
@Getter public Map<String, String> keys;
@Getter public Core core = new Core();
@Getter public Discord discord = new Discord();
@Getter public SelfCare selfCare = new SelfCare();
@Getter public Bots[] bots = new Bots[]{};
public static class Core {
@Getter public int layers = 3;
@Getter public int refillInterval = 60 * 1000;
@Getter public String customName = "[{\"text\":\"ChomeNS \",\"color\":\"yellow\"},{\"text\":\"Core\",\"color\":\"green\"},{\"text\":\"\",\"color\":\"gold\"}]";
}
public static class Discord {
@Getter public String prefix = "default!";
@Getter public String token;
@Getter public Map<String, String> servers = new HashMap<>();
@Getter public EmbedColors embedColors = new EmbedColors();
}
public static class EmbedColors {
@Getter public String normal = "#FFFF00";
@Getter public String error = "#FF0000";
}
public static class SelfCare {
@Getter public int checkInterval;
@Getter public boolean op = true;
@Getter public boolean gamemode = true;
@Getter public boolean endCredits = true;
@Getter public boolean cspy = true;
@Getter public boolean vanish = true;
@Getter public boolean nickname = true;
@Getter public boolean socialspy = true;
@Getter public boolean mute = true;
@Getter public boolean prefix = true;
}
public static class Bots {
@Getter public String host;
@Getter public int port;
@Getter public String username;
@Getter public boolean kaboom = false;
}
}