54 public static Map<Integer, MutableNumber> BOOT_LOOT =
new HashMap<>();
56 public static void logLoot(Item item) {
57 MutableNumber amount = BOOT_LOOT.getOrDefault(item.getId(),
new MutableNumber());
58 amount.incrementAndGet(item.getAmount());
59 BOOT_LOOT.put(item.getId(), amount);
88 public static final Appearance APPEARANCE =
new Appearance(
Gender.
MALE,
Utility.random(0, 8),
Utility.random(10, 17),
Utility.random(18, 25),
Utility.random(26, 31),
Utility.random(33, 34),
Utility.random(36, 40),
Utility.random(42, 43), 7, 8, 9, 5, 0);
92 "Time to kick ass and take names!",
93 "I am the eco cleaner and cleanse I shall!",
94 "Time to make my daddy, Daniel proud!"
101 "Let's see what you got"
123 static final String[] DEATH_MESSAGES = {
128 "Ugh.. Developers needs to make me stronger!"
132 static String nameGenerator() {
137 private static List<String> getAvailableBotNames() {
138 List<String> names =
new ArrayList<>(
BOT_NAMES.length);
140 for (Player bot :
World.getPlayers()) {
145 if (bot.getName().equalsIgnoreCase(nameList)) {
146 names.remove(nameList);
static final String[] FIGHT_END_MESSAGES
static final String[] FIGHT_START_MESSAGES
static final String[] BOT_NAMES
static final String[] KILLED_MESSAGES
static final String[] GEAR_UP_MESSAGES
static final Appearance APPEARANCE
static PlayerTitle create(String title, int color)