Skip to content

@zikeji/hypixel / SkyBlockResources

Class: SkyBlockResources ​

Example ​

typescript
const achievements = await client.resources.achievements();

Extends ​

  • Method

Methods ​

API ​

bingo() ​

bingo(): Promise<ResultObject<ResourcesSkyblockBingoResponse, ["success", "lastUpdated"]>>

Information regarding the current bingo event and its goals.

Returns ​

Promise<ResultObject<ResourcesSkyblockBingoResponse, ["success", "lastUpdated"]>>

Example ​
typescript
const bingo = await client.resources.skyblock.bingo();

collections() ​

collections(): Promise<ResultObject<ResourcesSkyblockCollectionsResponse, ["collections"]>>

Returns the list of ingame collections.

Returns ​

Promise<ResultObject<ResourcesSkyblockCollectionsResponse, ["collections"]>>

Example ​
typescript
const collections = await client.resources.skyblock.collections();
console.log(collections.FARMING);

election() ​

election(): Promise<ResultObject<ResourcesSkyblockElectionResponse, ["success", "lastUpdated"]>>

Information regarding the current mayor and ongoing election in SkyBlock.

Returns ​

Promise<ResultObject<ResourcesSkyblockElectionResponse, ["success", "lastUpdated"]>>

Example ​
typescript
const electionInfo = await client.resources.skyblock.election();

items() ​

items(): Promise<SkyBlockItem[] & object>

Returns the current items from the SkyBlock gamemode.

Returns ​

Promise<SkyBlockItem[] & object>

Example ​
typescript
const items = await client.resources.skyblock.items();

skills() ​

skills(): Promise<ResultObject<ResourcesSkyblockSkillsResponse, ["skills"]>>

Returns the current skills from the SkyBlock gamemode.

Returns ​

Promise<ResultObject<ResourcesSkyblockSkillsResponse, ["skills"]>>

Example ​
typescript
const skills = await client.resources.skyblock.skills();

Released under the MIT License.