Class: SkyBlockResources
# Class: SkyBlockResources
# Example
const achievements = await client.resources.achievements();
# Extends
Method
# API
# bingo()
bingo():
Promise
<ResultObject
<ResourcesSkyblockBingoResponse
, ["success"
,"lastUpdated"
]>>
Information regarding the current bingo event and its goals.
# Returns
Promise
<ResultObject
<ResourcesSkyblockBingoResponse
, ["success"
, "lastUpdated"
]>>
# Example
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
const collections = await client.resources.skyblock.collections();
console.log(collections.FARMING);
2
# election()
election():
Promise
<ResultObject
<ResourcesSkyblockElectionResponse
, ["success"
,"lastUpdated"
]>>
Information regarding the current mayor and ongoing election in SkyBlock.
# Returns
Promise
<ResultObject
<ResourcesSkyblockElectionResponse
, ["success"
, "lastUpdated"
]>>
# Example
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
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
const skills = await client.resources.skyblock.skills();