|
3 | 3 | import java.util.List; |
4 | 4 |
|
5 | 5 | public enum MessagesEntry { |
6 | | - PREFIX("prefix", "&0[&8DeepslateMC&0]"), |
7 | | - WRONG_SYNTAX("wrongSyntax", "&cWrong usage, use: &b%usage%"), |
8 | | - CONFIG_RELOADED("configReloaded", "&aConfig got reloaded successfully"), |
9 | | - ONLY_FOR_PLAYERS("onlyForPlayers", "&cThis command can only be used by players"), |
10 | | - DISCORD_MESSAGE("discordMessage", "&6The link to our Discord server: &b%link%"), |
11 | | - NO_PERMISSIONS("noPermissions", "&cYou have no permission to do this"), |
12 | | - CLEARED_CHAT("clearedChat", "&6The chat got cleared by &b%clearer%"), |
13 | | - BUILDWORLD_SET("buildworldSet", "&aThe buildworld got set successfully"), |
14 | | - BUILDWORLD_WELCOME("buildworldWelcome", "&aWelcome to the buildworld"), |
15 | | - BUILDWORLD_NOT_SET("buildworldNotSet", "&cThe buildworld is not set"), |
16 | | - MAINTENANCE_KICK("maintenanceKick", "&cThe server is currently in maintenance mode"), |
17 | | - MAINTENANCE_ON("maintenanceOn", "&aYou turned on the maintenance mode"), |
18 | | - MAINTENANCE_OFF("maintenanceOff", "&aYou turned off the maintenance mode"), |
19 | | - HELP_MESSAGE("helpMessage", List.of("&6This is a custom help message.", "&6Configure it in the &bmessages.yml &6file inside the deepslate folder.")), |
20 | | - SPAWN_SET("spawnSet", "&aThe spawn got set successfully"), |
21 | | - SPAWN_NOT_SET("spawnNotSet", "&cThe spawn is not set"), |
22 | | - SPAWN_TELEPORTED("spawnTeleport", "&aYou got teleported to the spawn"), |
23 | | - NO_ITEM("noItem", "&cNo valid item was found"), |
24 | | - ITEM_UNBREAKABLE("itemUnbreakable", "&aThe item is now unbreakable"),; |
| 6 | + PREFIX("prefix", "<color:#222222>[<gradient:white:dark_gray>DeepslateMC<color:#222222>]"), |
| 7 | + WRONG_SYNTAX("wrongSyntax", "<red>Wrong usage, use: <aqua>%usage%"), |
| 8 | + CONFIG_RELOADED("configReloaded", "<green>Config got reloaded successfully"), |
| 9 | + ONLY_FOR_PLAYERS("onlyForPlayers", "<red>This command can only be used by players"), |
| 10 | + DISCORD_MESSAGE("discordMessage", "<gold>The link to our Discord server: <aqua>%link%"), |
| 11 | + NO_PERMISSIONS("noPermissions", "<red>You have no permission to do this"), |
| 12 | + CLEARED_CHAT("clearedChat", "<gold>The chat got cleared by <aqua>%clearer%"), |
| 13 | + BUILDWORLD_SET("buildworldSet", "<green>The buildworld got set successfully"), |
| 14 | + BUILDWORLD_WELCOME("buildworldWelcome", "<green>Welcome to the buildworld"), |
| 15 | + BUILDWORLD_NOT_SET("buildworldNotSet", "<red>The buildworld is not set"), |
| 16 | + MAINTENANCE_KICK("maintenanceKick", "<red>The server is currently in maintenance mode"), |
| 17 | + MAINTENANCE_ON("maintenanceOn", "<green>You turned on the maintenance mode"), |
| 18 | + MAINTENANCE_OFF("maintenanceOff", "<green>You turned off the maintenance mode"), |
| 19 | + HELP_MESSAGE("helpMessage", List.of("<gold>This is a custom help message.", "<gold>Configure it in the <aqua>messages.yml <gold>file inside the deepslate folder.")), |
| 20 | + SPAWN_SET("spawnSet", "<green>The spawn got set successfully"), |
| 21 | + SPAWN_NOT_SET("spawnNotSet", "<red>The spawn is not set"), |
| 22 | + SPAWN_TELEPORTED("spawnTeleport", "<green>You got teleported to the spawn"), |
| 23 | + NO_ITEM("noItem", "<red>No valid item was found"), |
| 24 | + ITEM_UNBREAKABLE("itemUnbreakable", "<green>The item is now unbreakable"),; |
25 | 25 |
|
26 | 26 | final String key; |
27 | 27 | final Object defaultValue; |
|
0 commit comments