Skip to content

Commit 797b00e

Browse files
authored
Add missing guild information (#466)
* Add POJO for guild ranks * Refactor GuildReply & inner classes * Add "unused" suppression on GuildReply * Add per-game experience to guild reply * Make weekly exp accessible for Guild.Member * Make GetGuildExample more informative * Add preferredGames support; begin making Guild immutable * Refactor and document Banner class * Add a few more comments to example * Add achievement stats to Guild * Fix confusing legacyRanking behavior * Add preferredGames to example * Add missing quote to javadoc link
1 parent c3bc669 commit 797b00e

File tree

5 files changed

+876
-61
lines changed

5 files changed

+876
-61
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package net.hypixel.api.data.type;
2+
3+
/**
4+
* Types of achievements that can be earned by guilds on Hypixel.
5+
* <p>
6+
* Created using <a href="https://github.com/slothpixel/hypixelconstants">slothpixel/hypixelconstants</a>
7+
* as a reference.
8+
*/
9+
public enum GuildAchievement {
10+
/**
11+
* A tiered achievement based on the highest amount of experience earned by a guild in a single
12+
* day.
13+
*/
14+
EXPERIENCE_KINGS,
15+
16+
/**
17+
* A tiered achievement based on the highest number of members a guild has had online at the
18+
* same time.
19+
*/
20+
ONLINE_PLAYERS,
21+
22+
/**
23+
* A tiered achievement based on a guild's highest level.
24+
*/
25+
PRESTIGE,
26+
27+
/**
28+
* A tiered achievement based on the highest number of combined wins (in mini-games) between
29+
* members of a guild on the same day.
30+
*/
31+
WINNERS
32+
}

0 commit comments

Comments
 (0)