Character#

class corkus.objects.Character#

Represents one of the player’s characters that a Player have currently active.

property uuid#

Unique identifier for this character.

Return type:

CorkusUUID

property display_name#

Pretty name to display to end-user like Archer, Mage or Dark Wizard.

Return type:

str

property approximate_create#

Approximate time when class was created.

Note

Wynncraft API does not provide information about when a class was created. This property makes a educated guess and provide two datetimes between which this class was created.

Return type:

Tuple[datetime, datetime]

property kind#

Class type ignoring re-skinned variants. CharacterType.DARK_WIZARD is converted to CharacterType.MAGE etc.

Return type:

CharacterType

property reskinned#

Does this class use re-skinned variant.

Return type:

bool

property type#

Class type including re-skinned variants.

Return type:

CharacterType

property quests#

List of all quests completed by player on this class.

Return type:

List[Quest]

property playtime#

Time that player spent on wynncraft servers using this class.

Return type:

PlayerPlaytime

property combined_level#

Combined level of all professions including combat.

Return type:

int

property statistics#

General statistics for this class.

Return type:

ClassStatistics

property skill_points#

Skill points of this class.

Return type:

SkillPoints

property dungeons#

List of dungeons completed by this class.

Return type:

List[Dungeon]

property raids#

List of raids completed by this class.

Return type:

List[Raid]

property gamemode#

Challenge gamemodes that are enabled on this class.

Return type:

PlayerGamemodes

property professions#

Returns a list of all players professions.

Return type:

List[PlayerProfession]

property combat#

Shortcut to combat profession.

Return type:

PlayerProfession

property pre_economy_update#

Did this class achieve level 101 before 1.18 Economy Update when level cap was risen.

Return type:

str

get_profession(profession)#

Returns a profession with the given profession type.

Parameters:

profession (ProfessionType) – Type of profession.

Return type:

PlayerProfession