Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package net.hypixel.api.data.type;

/**
* Types of achievements that can be earned by guilds on Hypixel.
* <p>
* Created using <a href="https://github.com/slothpixel/hypixelconstants">slothpixel/hypixelconstants</a>
* as a reference.
*/
public enum GuildAchievement {
/**
* A tiered achievement based on the highest amount of experience earned by a guild in a single
* day.
*/
EXPERIENCE_KINGS,

/**
* A tiered achievement based on the highest number of members a guild has had online at the
* same time.
*/
ONLINE_PLAYERS,

/**
* A tiered achievement based on a guild's highest level.
*/
PRESTIGE,

/**
* A tiered achievement based on the highest number of combined wins (in mini-games) between
* members of a guild on the same day.
*/
WINNERS
}
Loading