hypixel-api-reborn 11.2.1 → 11.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -8
- package/src/API/housing/getActiveHouses.js +7 -0
- package/src/API/housing/getHouse.js +9 -0
- package/src/API/housing/getPlayerHouses.js +11 -0
- package/src/API/index.js +6 -1
- package/src/API/skyblock/getFireSales.js +1 -1
- package/src/API/skyblock/getGarden.js +7 -0
- package/src/API/skyblock/getMember.js +4 -2
- package/src/API/skyblock/getProfiles.js +4 -2
- package/src/Client.js +46 -2
- package/src/Private/requests.js +1 -1
- package/src/index.js +5 -0
- package/src/structures/House.js +54 -0
- package/src/structures/MiniGames/Arcade.js +754 -270
- package/src/structures/MiniGames/ArenaBrawl.js +97 -31
- package/src/structures/MiniGames/BlitzSurvivalGames.js +378 -127
- package/src/structures/MiniGames/BuildBattle.js +19 -8
- package/src/structures/MiniGames/CopsAndCrims.js +252 -25
- package/src/structures/MiniGames/Duels.js +916 -656
- package/src/structures/MiniGames/MegaWalls.js +390 -51
- package/src/structures/MiniGames/MurderMystery.js +151 -30
- package/src/structures/MiniGames/Paintball.js +31 -11
- package/src/structures/MiniGames/Quakecraft.js +113 -50
- package/src/structures/MiniGames/SkyWars.js +340 -195
- package/src/structures/MiniGames/SmashHeroes.js +195 -69
- package/src/structures/MiniGames/SpeedUHC.js +76 -36
- package/src/structures/MiniGames/TNTGames.js +242 -73
- package/src/structures/MiniGames/TurboKartRacers.js +55 -115
- package/src/structures/MiniGames/UHC.js +135 -124
- package/src/structures/MiniGames/VampireZ.js +70 -37
- package/src/structures/MiniGames/Warlords.js +126 -1
- package/src/structures/MiniGames/WoolWars.js +54 -4
- package/src/structures/Player.js +33 -25
- package/src/structures/SkyBlock/SkyblockGarden.js +146 -0
- package/src/structures/SkyBlock/SkyblockMember.js +12 -5
- package/src/utils/Constants.js +507 -5
- package/src/utils/SkyblockUtils.js +33 -0
- package/typings/index.d.ts +1034 -899
package/typings/index.d.ts
CHANGED
|
@@ -17,10 +17,8 @@ export type PLAYER_RANK =
|
|
|
17
17
|
| 'YouTube'
|
|
18
18
|
| 'Game Master'
|
|
19
19
|
| 'Admin'
|
|
20
|
-
| '
|
|
21
|
-
| '
|
|
22
|
-
| 'MOJANG'
|
|
23
|
-
| 'PIG+++';
|
|
20
|
+
| 'PIG+++'
|
|
21
|
+
| 'INNIT';
|
|
24
22
|
export type GAME_NAME =
|
|
25
23
|
| 'Quake Craft'
|
|
26
24
|
| 'Walls'
|
|
@@ -130,6 +128,7 @@ export type GAME_CODE =
|
|
|
130
128
|
| 'SMP'
|
|
131
129
|
| 'WOOL_GAMES';
|
|
132
130
|
export type SKYWARS_PRESTIGE =
|
|
131
|
+
| 'Iron'
|
|
133
132
|
| 'Iron'
|
|
134
133
|
| 'Gold'
|
|
135
134
|
| 'Diamond'
|
|
@@ -301,6 +300,42 @@ export interface SKYBLOCK_SKILL_DATA {
|
|
|
301
300
|
progress: number;
|
|
302
301
|
cosmetic: boolean;
|
|
303
302
|
}
|
|
303
|
+
export interface SKYBLOCK_GARDEN_CROPS {
|
|
304
|
+
wheat: number;
|
|
305
|
+
carrot: number;
|
|
306
|
+
sugarCane: number;
|
|
307
|
+
potato: number;
|
|
308
|
+
pumpkin: number;
|
|
309
|
+
melon: number;
|
|
310
|
+
cactus: number;
|
|
311
|
+
cocoBeans: number;
|
|
312
|
+
mushroom: number;
|
|
313
|
+
netherWart: number;
|
|
314
|
+
}
|
|
315
|
+
export interface SKYBLOCK_GARDEN_COMPOSTER_UPGRADES {
|
|
316
|
+
speed: number;
|
|
317
|
+
multiDrop: number;
|
|
318
|
+
fuelCap: number;
|
|
319
|
+
organicMatterCap: number;
|
|
320
|
+
costReduction: number;
|
|
321
|
+
}
|
|
322
|
+
export interface SKYBLOCK_GARDEN_COMPOSTER {
|
|
323
|
+
organicMatter: number;
|
|
324
|
+
fuelUnits: number;
|
|
325
|
+
compostUnits: number;
|
|
326
|
+
compostItems: number;
|
|
327
|
+
conversionTicks: number;
|
|
328
|
+
upgrades: SKYBLOCK_GARDEN_COMPOSTER_UPGRADES;
|
|
329
|
+
}
|
|
330
|
+
export interface SKYBLOCK_GARDEN_VISITOR_SERVED {
|
|
331
|
+
total: number;
|
|
332
|
+
unique: number;
|
|
333
|
+
}
|
|
334
|
+
export interface SKYBLOCK_GARDEN_VISITOR {
|
|
335
|
+
visited: Record<string, number>;
|
|
336
|
+
completed: Record<string, number>;
|
|
337
|
+
served: SKYBLOCK_GARDEN_VISITOR_SERVED;
|
|
338
|
+
}
|
|
304
339
|
export interface SKYBLOCK_SLAYER_DATA {
|
|
305
340
|
xp: number;
|
|
306
341
|
tier1: number;
|
|
@@ -340,13 +375,13 @@ export interface methodOptions {
|
|
|
340
375
|
noCaching?: boolean;
|
|
341
376
|
}
|
|
342
377
|
export interface playerMethodOptions extends methodOptions {
|
|
343
|
-
raw?: boolean;
|
|
344
378
|
guild?: boolean;
|
|
345
379
|
recentGames?: boolean;
|
|
346
380
|
}
|
|
347
381
|
export interface skyblockMemberOptions extends methodOptions {
|
|
348
|
-
raw?: boolean;
|
|
349
382
|
fetchPlayer?: boolean;
|
|
383
|
+
getMuseum?: boolean;
|
|
384
|
+
getGarden?: boolean;
|
|
350
385
|
}
|
|
351
386
|
export interface auctionsOptions extends methodOptions {
|
|
352
387
|
noInfo?: boolean;
|
|
@@ -360,6 +395,14 @@ export interface auctionsOptions extends methodOptions {
|
|
|
360
395
|
export interface playerBingoOptions extends methodOptions {
|
|
361
396
|
fetchBingoData?: boolean;
|
|
362
397
|
}
|
|
398
|
+
|
|
399
|
+
export interface LevelProgress {
|
|
400
|
+
currentXP: number;
|
|
401
|
+
remainingXP: number;
|
|
402
|
+
xpToNext: number;
|
|
403
|
+
percent: number;
|
|
404
|
+
percentRemaining: number;
|
|
405
|
+
}
|
|
363
406
|
declare module 'hypixel-api-reborn' {
|
|
364
407
|
const version: string;
|
|
365
408
|
const Errors: {
|
|
@@ -1081,98 +1124,45 @@ declare module 'hypixel-api-reborn' {
|
|
|
1081
1124
|
*/
|
|
1082
1125
|
readonly cache: Map<string, any>;
|
|
1083
1126
|
/**
|
|
1084
|
-
* @description
|
|
1085
|
-
* @param
|
|
1086
|
-
* @param options - player search options
|
|
1087
|
-
*/
|
|
1088
|
-
getPlayer(query: string, options?: playerMethodOptions): Promise<Player>;
|
|
1089
|
-
/**
|
|
1090
|
-
* @description Allows you to get statistics of hypixel guild
|
|
1091
|
-
* @param searchParameter - 'name', 'player' or 'id'
|
|
1092
|
-
* @param query - guild name, player nickname or guild id
|
|
1127
|
+
* @description Retrieves information about Hypixel achievements.
|
|
1128
|
+
* @param {methodOptions} [options] - The method options.
|
|
1093
1129
|
*/
|
|
1094
|
-
|
|
1130
|
+
getAchievements(options?: methodOptions): Promise<Achievements>;
|
|
1095
1131
|
/**
|
|
1096
|
-
* @description
|
|
1132
|
+
* @description Parses the RSS feed from status.hypixel.net
|
|
1133
|
+
* @param {methodOptions} [options] - The method options.
|
|
1097
1134
|
*/
|
|
1098
|
-
|
|
1135
|
+
getAPIStatus(options?: methodOptions): Promise<APIStatus>;
|
|
1099
1136
|
/**
|
|
1100
1137
|
* @description Allows you to get all active boosters
|
|
1138
|
+
* @param {methodOptions} [options] - The method options.
|
|
1101
1139
|
*/
|
|
1102
1140
|
getBoosters(options?: methodOptions): Promise<Booster[]>;
|
|
1103
1141
|
/**
|
|
1104
|
-
* @description Allows you to get
|
|
1105
|
-
* @param
|
|
1106
|
-
*/
|
|
1107
|
-
getSkyblockProfiles(query: string, options?: skyblockMemberOptions): Promise<SkyblockProfile[]>;
|
|
1108
|
-
/**
|
|
1109
|
-
* @description Allows you to get a player's skyblock member data from all their profiles
|
|
1110
|
-
* @param query - player nickname or uuid
|
|
1111
|
-
*/
|
|
1112
|
-
getSkyblockMember(query: string, options?: skyblockMemberOptions): Promise<Map<string, SkyblockMember>>;
|
|
1113
|
-
/**
|
|
1114
|
-
* Allows you to get filtered skyblock auctions
|
|
1115
|
-
* Using auction ID will return an array of at most 1 element
|
|
1116
|
-
* @method
|
|
1117
|
-
* @name Client#getSkyblockAuction
|
|
1118
|
-
* @param type - Filter to use
|
|
1119
|
-
* @param query - uuid of profile, player, or auction. IGN can be used as well
|
|
1120
|
-
* @param includeItemBytes - include item bytes (optional)
|
|
1121
|
-
* @param options - Options
|
|
1122
|
-
*/
|
|
1123
|
-
getSkyblockAuction(
|
|
1124
|
-
type: 'PROFILE' | 'PLAYER' | 'AUCTION',
|
|
1125
|
-
query: string,
|
|
1126
|
-
includeItemBytes?: boolean,
|
|
1127
|
-
options?: methodOptions
|
|
1128
|
-
): Promise<Auction[]>; /**
|
|
1129
|
-
* @description Allows you to get all auctions of player
|
|
1130
|
-
* @deprecated Use Client#getSkyblockAuction
|
|
1131
|
-
* @param query - player nickname or uuid
|
|
1132
|
-
* @param includeItemBytes - include item bytes (optional)
|
|
1133
|
-
*/
|
|
1134
|
-
getEndedSkyblockAuctions(
|
|
1135
|
-
includeItemBytes?: boolean,
|
|
1136
|
-
options?: methodOptions
|
|
1137
|
-
): Promise<{ info: AuctionInfo; auctions: PartialAuction[] }>;
|
|
1138
|
-
/**
|
|
1139
|
-
* @description Allows you to get all auctions of player
|
|
1140
|
-
* @param query - player nickname or uuid
|
|
1141
|
-
* @param includeItemBytes - include item bytes (optional)
|
|
1142
|
-
*/
|
|
1143
|
-
getSkyblockAuctionsByPlayer(query: string, includeItemBytes?: boolean, options?: methodOptions): Promise<Auction[]>;
|
|
1144
|
-
/**
|
|
1145
|
-
* @description Allows you to get list of products
|
|
1146
|
-
*/
|
|
1147
|
-
getSkyblockBazaar(options?: methodOptions): Promise<Product[]>;
|
|
1148
|
-
/**
|
|
1149
|
-
* @description Gets bingo data
|
|
1150
|
-
*/
|
|
1151
|
-
getSkyblockBingo(options?: methodOptions): Promise<BingoData>;
|
|
1152
|
-
/**
|
|
1153
|
-
* @description Gets bingo data of a player
|
|
1154
|
-
* @param query - UUID/IGN of player
|
|
1155
|
-
*/
|
|
1156
|
-
getSkyblockBingoByPlayer(query: string, options?: playerBingoOptions): Promise<PlayerBingo>;
|
|
1157
|
-
/**
|
|
1158
|
-
* @description Gets data of skyblock government
|
|
1142
|
+
* @description Allows you to get information about hypixel challenges [NO KEY REQUIRED]
|
|
1143
|
+
* @param {methodOptions} [options] - The method options.
|
|
1159
1144
|
*/
|
|
1160
|
-
|
|
1145
|
+
getChallenges(options?: methodOptions): Promise<Challenges>;
|
|
1161
1146
|
/**
|
|
1162
|
-
* @description
|
|
1147
|
+
* @description Allows you to get player count along with the player count of each public game
|
|
1148
|
+
* @param {methodOptions} [options] - The method options.
|
|
1163
1149
|
*/
|
|
1164
|
-
|
|
1150
|
+
getGameCounts(options?: methodOptions): Promise<GameCounts>;
|
|
1165
1151
|
/**
|
|
1166
|
-
* @description Allows you to get
|
|
1152
|
+
* @description Allows you to get statistics of hypixel guild
|
|
1153
|
+
* @param {"id"|"name"|"player"} searchParameter - How you want to search
|
|
1154
|
+
* @param {string} query - guild name, player nickname or guild id
|
|
1155
|
+
* @param {methodOptions} [options] - The method options.
|
|
1167
1156
|
*/
|
|
1168
|
-
|
|
1157
|
+
getGuild(searchParameter: 'id' | 'name' | 'player', query: string, options?: methodOptions): Promise<Guild>;
|
|
1169
1158
|
/**
|
|
1170
|
-
* @description Allows you to get
|
|
1171
|
-
* @param
|
|
1159
|
+
* @description Allows you to get information about hypixel guild achievements [NO KEY REQUIRED]
|
|
1160
|
+
* @param {methodOptions} [options] - The method options.
|
|
1172
1161
|
*/
|
|
1173
|
-
|
|
1162
|
+
getGuildAchievements(options?: methodOptions): Promise<GuildAchievements>;
|
|
1174
1163
|
/**
|
|
1175
1164
|
* @description Allows you to get leaderboards of each mini-game
|
|
1165
|
+
* @param {methodOptions} [options] - The method options.
|
|
1176
1166
|
*/
|
|
1177
1167
|
getLeaderboards(options?: methodOptions): Promise<{
|
|
1178
1168
|
ARENA: Leaderboard[];
|
|
@@ -1200,38 +1190,131 @@ declare module 'hypixel-api-reborn' {
|
|
|
1200
1190
|
VAMPIREZ: Leaderboard[];
|
|
1201
1191
|
}>;
|
|
1202
1192
|
/**
|
|
1203
|
-
* @description Allows you to get
|
|
1193
|
+
* @description Allows you to get statistics of player
|
|
1194
|
+
* @param {string} query - player nickname or uuid
|
|
1195
|
+
* @param {playerMethodOptions} [options] - player search options
|
|
1204
1196
|
*/
|
|
1205
|
-
|
|
1197
|
+
getPlayer(query: string, options?: playerMethodOptions): Promise<Player>;
|
|
1206
1198
|
/**
|
|
1207
|
-
* @description Allows you to get
|
|
1199
|
+
* @description Allows you to get information about hypixel quests [NO KEY REQUIRED]
|
|
1200
|
+
* @param {methodOptions} [options] - Options
|
|
1208
1201
|
*/
|
|
1209
|
-
|
|
1202
|
+
getQuests(options?: methodOptions): Promise<Quests>;
|
|
1203
|
+
/**
|
|
1204
|
+
* @description Allows you to get recent games of a player
|
|
1205
|
+
* @param {string} query - player nickname or uuid
|
|
1206
|
+
* @param {methodOptions} [options] - Options
|
|
1207
|
+
*/
|
|
1208
|
+
getRecentGames(query: string, options?: methodOptions): Promise<RecentGame[]>;
|
|
1210
1209
|
/**
|
|
1211
|
-
* @param repeats Amount of times to ping hypixel, preferably between 1 and 10 times.
|
|
1212
1210
|
* @description Parses information returned by hypixel upon a status request packet
|
|
1211
|
+
* @param {number} repeats Amount of times to ping hypixel, preferably between 1 and 10 times.
|
|
1213
1212
|
*/
|
|
1214
1213
|
getServerInfo(repeats?: number): Promise<ServerInfo>;
|
|
1215
1214
|
/**
|
|
1216
|
-
* @description
|
|
1215
|
+
* @description Allows you to get player's network status
|
|
1216
|
+
* @param {string} query - player nickname or uuid
|
|
1217
|
+
* @param {methodOptions} [options] - Options
|
|
1217
1218
|
*/
|
|
1218
|
-
|
|
1219
|
+
getStatus(query: string, options?: methodOptions): Promise<Status>;
|
|
1219
1220
|
/**
|
|
1220
|
-
* @description Allows you to get
|
|
1221
|
+
* @description Allows you to get statistics of watchdog anticheat
|
|
1222
|
+
* @param {methodOptions} [options] - Options
|
|
1221
1223
|
*/
|
|
1222
|
-
|
|
1224
|
+
getWatchdogStats(options?: methodOptions): Promise<WatchdogStats>;
|
|
1223
1225
|
/**
|
|
1224
|
-
* @description Allows you to get
|
|
1226
|
+
* @description Allows you to get filtered skyblock auctions. Using auction ID will return an array of at most 1 element
|
|
1227
|
+
* @name Client#getSkyblockAuction
|
|
1228
|
+
* @param {'PROFILE' | 'PLAYER' | 'AUCTION'} type - Filter to use
|
|
1229
|
+
* @param {string} query - uuid of profile, player, or auction. IGN can be used as well
|
|
1230
|
+
* @param {boolean} includeItemBytes - include item bytes (optional)
|
|
1231
|
+
* @param {methodOptions} [options] - Options
|
|
1225
1232
|
*/
|
|
1226
|
-
|
|
1233
|
+
getSkyblockAuction(
|
|
1234
|
+
type: 'PROFILE' | 'PLAYER' | 'AUCTION',
|
|
1235
|
+
query: string,
|
|
1236
|
+
includeItemBytes?: boolean,
|
|
1237
|
+
options?: methodOptions
|
|
1238
|
+
): Promise<Auction[]>;
|
|
1227
1239
|
/**
|
|
1228
|
-
* Allows you to get
|
|
1240
|
+
* @description Allows you to get all auctions of player
|
|
1241
|
+
* @param {string} query - player nickname or uuid
|
|
1242
|
+
* @param {boolean} includeItemBytes - include item bytes (optional)
|
|
1243
|
+
* @param {methodOptions} [options] - Options
|
|
1229
1244
|
*/
|
|
1230
|
-
|
|
1245
|
+
getSkyblockAuctionsByPlayer(query: string, includeItemBytes?: boolean, options?: methodOptions): Promise<Auction[]>;
|
|
1231
1246
|
/**
|
|
1232
|
-
* @description Allows you to get
|
|
1247
|
+
* @description Allows you to get list of products
|
|
1248
|
+
* @param {methodOptions} [options] - Options
|
|
1233
1249
|
*/
|
|
1234
|
-
|
|
1250
|
+
getSkyblockBazaar(options?: methodOptions): Promise<Product[]>;
|
|
1251
|
+
/**
|
|
1252
|
+
* @description Gets bingo data
|
|
1253
|
+
* @param {methodOptions} [options] - Options
|
|
1254
|
+
*/
|
|
1255
|
+
getSkyblockBingo(options?: methodOptions): Promise<BingoData>;
|
|
1256
|
+
/**
|
|
1257
|
+
* @description Gets bingo data of a player
|
|
1258
|
+
* @param {string} query - UUID/IGN of player
|
|
1259
|
+
* @param {methodOptions} [options] - Options
|
|
1260
|
+
*/
|
|
1261
|
+
getSkyblockBingoByPlayer(query: string, options?: playerBingoOptions): Promise<PlayerBingo>;
|
|
1262
|
+
/**
|
|
1263
|
+
* @description Allows you to get list of active skyblock firesales
|
|
1264
|
+
* @param {methodOptions} [options] - Options
|
|
1265
|
+
*/
|
|
1266
|
+
getSkyblockFireSales(options?: methodOptions): Promise<FireSale[]>;
|
|
1267
|
+
/**
|
|
1268
|
+
* @description Allows you to get a profiles skyblock garden
|
|
1269
|
+
* @param {methodOptions} [options] - Options
|
|
1270
|
+
*/
|
|
1271
|
+
getSkyblockGarden(profileId: string, options?: methodOptions);
|
|
1272
|
+
/**
|
|
1273
|
+
* @description Gets data of skyblock government
|
|
1274
|
+
* @param {methodOptions} [options] - Options
|
|
1275
|
+
*/
|
|
1276
|
+
getSkyblockGovernment(options?: methodOptions): Promise<GovernmentData>;
|
|
1277
|
+
/**
|
|
1278
|
+
* @description Allows you to get a player's skyblock member data from all their profiles
|
|
1279
|
+
* @param query - player nickname or uuid
|
|
1280
|
+
* @param {methodOptions} [options] - Options
|
|
1281
|
+
*/
|
|
1282
|
+
getSkyblockMember(query: string, options?: skyblockMemberOptions): Promise<Map<string, SkyblockMember>>;
|
|
1283
|
+
/**
|
|
1284
|
+
* @description Allows you to get statistics of player
|
|
1285
|
+
* @param {string} query - player nickname or uuid
|
|
1286
|
+
* @param {string} profileId - profile id
|
|
1287
|
+
* @param {methodOptions} [options] - Options
|
|
1288
|
+
*/
|
|
1289
|
+
getSkyblockMuseum(query: string, profileId: string, options?: methodOptions);
|
|
1290
|
+
/**
|
|
1291
|
+
* @description Allows you to get skyblock news
|
|
1292
|
+
* @param {methodOptions} [options] - Options
|
|
1293
|
+
*/
|
|
1294
|
+
getSkyblockNews(options?: methodOptions): Promise<SkyblockNews>;
|
|
1295
|
+
/**
|
|
1296
|
+
* @description Allows you to get a player's skyblock profiles
|
|
1297
|
+
* @param query - player nickname or uuid
|
|
1298
|
+
* @param {methodOptions} [options] - Options
|
|
1299
|
+
*/
|
|
1300
|
+
getSkyblockProfiles(query: string, options?: skyblockMemberOptions): Promise<SkyblockProfile[]>;
|
|
1301
|
+
/**
|
|
1302
|
+
* @description Get a array of active houses
|
|
1303
|
+
* @param {methodOptions} [options] - Options
|
|
1304
|
+
*/
|
|
1305
|
+
getActiveHouses(options?: methodOptions): Promise<House[]>;
|
|
1306
|
+
/**
|
|
1307
|
+
* @description Get a array of houses for a user
|
|
1308
|
+
* @param query - UUID / IGN of player
|
|
1309
|
+
* @param {methodOptions} [options] - Options
|
|
1310
|
+
*/
|
|
1311
|
+
getPlayerHouses(query: string, options?: methodOptions): Promise<House[]>;
|
|
1312
|
+
/**
|
|
1313
|
+
* @description Get a house
|
|
1314
|
+
* @param query - house uuid
|
|
1315
|
+
* @param {methodOptions} [options] - Options
|
|
1316
|
+
*/
|
|
1317
|
+
getHouse(query: string, options?: methodOptions): Promise<House>;
|
|
1235
1318
|
/**
|
|
1236
1319
|
* @param amount - Amount of cache entries to delete
|
|
1237
1320
|
* @description Allows you to clear cache
|
|
@@ -1270,13 +1353,7 @@ declare module 'hypixel-api-reborn' {
|
|
|
1270
1353
|
giftsSent?: number;
|
|
1271
1354
|
giftBundlesSent?: number;
|
|
1272
1355
|
giftBundlesReceived?: number;
|
|
1273
|
-
levelProgress:
|
|
1274
|
-
currentXP: number;
|
|
1275
|
-
remainingXP: number;
|
|
1276
|
-
xpToNext: number;
|
|
1277
|
-
percent: number;
|
|
1278
|
-
percentRemaining: number;
|
|
1279
|
-
};
|
|
1356
|
+
levelProgress: LevelProgress;
|
|
1280
1357
|
isOnline: boolean;
|
|
1281
1358
|
userLanguage: string;
|
|
1282
1359
|
lastDailyReward?: Date;
|
|
@@ -1375,9 +1452,18 @@ declare module 'hypixel-api-reborn' {
|
|
|
1375
1452
|
exactLevel: number;
|
|
1376
1453
|
level: number;
|
|
1377
1454
|
coins: number;
|
|
1455
|
+
wins: number;
|
|
1456
|
+
gamesPlayed: number;
|
|
1457
|
+
woolsPlaced: number;
|
|
1458
|
+
blocksBroken: number;
|
|
1459
|
+
placeBreakRatio: number;
|
|
1460
|
+
kills: number;
|
|
1461
|
+
deaths: number;
|
|
1462
|
+
KDRatio: number;
|
|
1463
|
+
assists: number;
|
|
1464
|
+
powerups: number;
|
|
1378
1465
|
selectedClass: 'ASSAULT' | 'TANK' | 'GOLEM' | 'SWORDSMAN' | 'ENGINEER' | 'ARCHER' | 'NONE';
|
|
1379
1466
|
stats: {
|
|
1380
|
-
overall: WoolWarsStats;
|
|
1381
1467
|
assault: WoolWarsStats;
|
|
1382
1468
|
tank: WoolWarsStats;
|
|
1383
1469
|
golem: WoolWarsStats;
|
|
@@ -1389,7 +1475,7 @@ declare module 'hypixel-api-reborn' {
|
|
|
1389
1475
|
privateGamesConfig: PrivateGamesConfig;
|
|
1390
1476
|
}
|
|
1391
1477
|
type WoolWarsStats = {
|
|
1392
|
-
|
|
1478
|
+
wins: number;
|
|
1393
1479
|
gamesPlayed: number;
|
|
1394
1480
|
woolsPlaced: number;
|
|
1395
1481
|
blocksBroken: number;
|
|
@@ -1407,6 +1493,7 @@ declare module 'hypixel-api-reborn' {
|
|
|
1407
1493
|
game_speed: string;
|
|
1408
1494
|
speed: string;
|
|
1409
1495
|
no_class: 'Enabled' | 'Disabled';
|
|
1496
|
+
respawn_enable: boolean;
|
|
1410
1497
|
};
|
|
1411
1498
|
class PlayerCosmetics {
|
|
1412
1499
|
constructor(data: Record<string, unknown>);
|
|
@@ -1685,75 +1772,106 @@ declare module 'hypixel-api-reborn' {
|
|
|
1685
1772
|
monthlyCoins: number;
|
|
1686
1773
|
hintsDisabled: boolean;
|
|
1687
1774
|
flashDisabled: boolean;
|
|
1688
|
-
drawTheirThing: BaseGame;
|
|
1689
|
-
dragonWars: BaseGame;
|
|
1690
|
-
easterSimulator: EasterSimulator;
|
|
1691
|
-
grinchSimulator: GrinchSimulator;
|
|
1692
|
-
scubaSimulator: ScubaSimulator;
|
|
1693
|
-
santaSimulator: SantaSimulator;
|
|
1694
|
-
santaSays: BaseGame;
|
|
1695
|
-
simonSays: BaseGame;
|
|
1696
|
-
farmHunt: BaseGame;
|
|
1697
|
-
holeInTheWall: HITW;
|
|
1698
|
-
miniWalls: MiniWalls;
|
|
1699
|
-
partyGames: BaseGame;
|
|
1700
|
-
partyGames2: BaseGame;
|
|
1701
|
-
partyGames3: BaseGame;
|
|
1702
|
-
throwOut: BaseGame;
|
|
1703
|
-
soccer: Soccer;
|
|
1704
|
-
hypixelSports: BaseGame;
|
|
1705
|
-
enderSpleef: BaseGame;
|
|
1706
1775
|
blockingDead: BlockingDead;
|
|
1776
|
+
bountyHunters: BountyHunters;
|
|
1777
|
+
captureTheWool: CaptureTheWool;
|
|
1778
|
+
dragonWars: DragonWars;
|
|
1779
|
+
dropper: Dropper;
|
|
1780
|
+
enderSpleef: EnderSpleef;
|
|
1781
|
+
farmHunt: FarmHunt;
|
|
1782
|
+
football: Football;
|
|
1707
1783
|
galaxyWars: GalaxyWars;
|
|
1708
|
-
|
|
1709
|
-
|
|
1784
|
+
hideAndSeek: HideAndSeek;
|
|
1785
|
+
holeInTheWall: HoleInTheWall;
|
|
1786
|
+
hypixelSays: HypixelSays;
|
|
1787
|
+
miniWalls: MiniWalls;
|
|
1788
|
+
pixelParty: PixelParty;
|
|
1710
1789
|
zombies: Zombies;
|
|
1711
|
-
captureTheWool: { kills: number; captures: number };
|
|
1712
1790
|
}
|
|
1713
|
-
class
|
|
1714
|
-
constructor(data: Record<string, unknown
|
|
1715
|
-
wins: number
|
|
1716
|
-
kills: number
|
|
1717
|
-
|
|
1718
|
-
roundsPlayed: number | null;
|
|
1719
|
-
private extend;
|
|
1791
|
+
class BlockingDead {
|
|
1792
|
+
constructor(data: Record<string, unknown>);
|
|
1793
|
+
wins: number;
|
|
1794
|
+
kills: number;
|
|
1795
|
+
headshots: number;
|
|
1720
1796
|
}
|
|
1721
|
-
class
|
|
1722
|
-
|
|
1797
|
+
class BountyHunters {
|
|
1798
|
+
constructor(data: Record<string, unknown>);
|
|
1799
|
+
wins: number;
|
|
1800
|
+
kills: number;
|
|
1801
|
+
deaths: number;
|
|
1802
|
+
KDRatio: number;
|
|
1803
|
+
bountyKills: number;
|
|
1804
|
+
bowKills: number;
|
|
1805
|
+
swordKills: number;
|
|
1723
1806
|
}
|
|
1724
|
-
class
|
|
1725
|
-
|
|
1807
|
+
class CaptureTheWool {
|
|
1808
|
+
constructor(data: Record<string, unknown>);
|
|
1809
|
+
wins: number;
|
|
1810
|
+
losses: number;
|
|
1811
|
+
WLRatio: number;
|
|
1812
|
+
draws: number;
|
|
1813
|
+
kills: number;
|
|
1814
|
+
deaths: number;
|
|
1815
|
+
KDRatio: number;
|
|
1816
|
+
assists: number;
|
|
1817
|
+
woolPickedUp: number;
|
|
1818
|
+
woolCaptured: number;
|
|
1819
|
+
fastestWin: number;
|
|
1820
|
+
longestGame: number;
|
|
1726
1821
|
}
|
|
1727
|
-
class
|
|
1728
|
-
|
|
1822
|
+
class DragonWars {
|
|
1823
|
+
constructor(data: Record<string, unknown>);
|
|
1824
|
+
wins: number;
|
|
1825
|
+
kills: number;
|
|
1729
1826
|
}
|
|
1730
|
-
class
|
|
1731
|
-
|
|
1827
|
+
class DropperMap {
|
|
1828
|
+
constructor(data: Record<string, unknown>, mapName: string);
|
|
1829
|
+
bestTime: number;
|
|
1830
|
+
completions: number;
|
|
1732
1831
|
}
|
|
1733
|
-
class
|
|
1832
|
+
class Dropper {
|
|
1734
1833
|
constructor(data: Record<string, unknown>);
|
|
1735
|
-
|
|
1736
|
-
|
|
1834
|
+
wins: number;
|
|
1835
|
+
fails: number;
|
|
1836
|
+
fastestGame: number;
|
|
1837
|
+
flawlessGames: number;
|
|
1838
|
+
gamesPlayed: number;
|
|
1839
|
+
mapsCompleted: number;
|
|
1840
|
+
gamesFinished: number;
|
|
1841
|
+
maps: Record<string, DropperMap>;
|
|
1737
1842
|
}
|
|
1738
|
-
class
|
|
1843
|
+
class EnderSpleef {
|
|
1739
1844
|
constructor(data: Record<string, unknown>);
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1845
|
+
wins: number;
|
|
1846
|
+
kills: number;
|
|
1847
|
+
trail: string;
|
|
1848
|
+
blocksDestroyed: number;
|
|
1849
|
+
bigShotActivations: number;
|
|
1850
|
+
tripleShotActivations: number;
|
|
1851
|
+
totalPowerUpActivations: number;
|
|
1852
|
+
}
|
|
1853
|
+
class FarmHunt {
|
|
1854
|
+
constructor(data: Record<string, unknown>);
|
|
1855
|
+
wins: number;
|
|
1856
|
+
winsAsAnimal: number;
|
|
1857
|
+
winsAsHunter: number;
|
|
1858
|
+
kills: number;
|
|
1859
|
+
killsAsAnimal: number;
|
|
1860
|
+
killsAsHunter: number;
|
|
1861
|
+
tauntsUsed: number;
|
|
1862
|
+
riskyTauntsUsed: number;
|
|
1863
|
+
safeTauntsUsed: number;
|
|
1864
|
+
dangerousTauntsUsed: number;
|
|
1865
|
+
fireworkTauntsUsed: number;
|
|
1866
|
+
poop: number;
|
|
1746
1867
|
}
|
|
1747
|
-
class
|
|
1868
|
+
class Football {
|
|
1748
1869
|
constructor(data: Record<string, unknown>);
|
|
1749
1870
|
wins: number;
|
|
1750
1871
|
kicks: number;
|
|
1751
1872
|
powerKicks: number;
|
|
1752
1873
|
goals: number;
|
|
1753
1874
|
}
|
|
1754
|
-
class BlockingDead extends BaseGame {
|
|
1755
|
-
headshots: number;
|
|
1756
|
-
}
|
|
1757
1875
|
class GalaxyWars {
|
|
1758
1876
|
constructor(data: Record<string, unknown>);
|
|
1759
1877
|
wins: number;
|
|
@@ -1765,15 +1883,91 @@ declare module 'hypixel-api-reborn' {
|
|
|
1765
1883
|
attackerKills: number;
|
|
1766
1884
|
defenderKills: number;
|
|
1767
1885
|
}
|
|
1768
|
-
class
|
|
1769
|
-
|
|
1886
|
+
class PartyPopper {
|
|
1887
|
+
constructor(data: Record<string, unknown>);
|
|
1888
|
+
winsAsSeeker: number;
|
|
1889
|
+
winsAsHider: number;
|
|
1890
|
+
wins: number;
|
|
1891
|
+
}
|
|
1892
|
+
class PropHunt {
|
|
1893
|
+
constructor(data: Record<string, unknown>);
|
|
1894
|
+
winsAsSeeker: number;
|
|
1895
|
+
winsAsHider: number;
|
|
1896
|
+
wins: number;
|
|
1897
|
+
}
|
|
1898
|
+
class HideAndSeek {
|
|
1899
|
+
constructor(data: Record<string, unknown>);
|
|
1900
|
+
partyPopper: PartyPopper;
|
|
1901
|
+
propHunt: PropHunt;
|
|
1902
|
+
winsAsSeeker: number;
|
|
1903
|
+
winsAsHider: number;
|
|
1904
|
+
}
|
|
1905
|
+
class HoleInTheWall {
|
|
1906
|
+
constructor(data: Record<string, unknown>);
|
|
1907
|
+
wins: number;
|
|
1908
|
+
rounds: number;
|
|
1909
|
+
scoreRecordFinals: number;
|
|
1910
|
+
scoreRecordNormal: number;
|
|
1911
|
+
scoreRecordOverall: number;
|
|
1912
|
+
}
|
|
1913
|
+
class HypixelSays {
|
|
1914
|
+
constructor(data: Record<string, unknown>);
|
|
1915
|
+
wins: number;
|
|
1916
|
+
rounds: number;
|
|
1917
|
+
roundWins: number;
|
|
1918
|
+
topScore: number;
|
|
1919
|
+
}
|
|
1920
|
+
class MiniWalls {
|
|
1921
|
+
constructor(data: Record<string, unknown>);
|
|
1922
|
+
kit: string;
|
|
1923
|
+
wins: number;
|
|
1924
|
+
kills: number;
|
|
1925
|
+
deaths: number;
|
|
1926
|
+
KDRatio: number;
|
|
1927
|
+
finalKills: number;
|
|
1928
|
+
witherKills: number;
|
|
1929
|
+
witherDamage: number;
|
|
1930
|
+
arrowsShot: number;
|
|
1931
|
+
arrowsHit: number;
|
|
1932
|
+
bowAccuracy: number;
|
|
1933
|
+
}
|
|
1934
|
+
class PixelPartyGameMode {
|
|
1935
|
+
constructor(data: Record<string, unknown>, modeName: string);
|
|
1936
|
+
wins: number;
|
|
1937
|
+
gamesPlayed: number;
|
|
1938
|
+
losses: number;
|
|
1939
|
+
WLRatio: number;
|
|
1940
|
+
roundsPlayed: number;
|
|
1941
|
+
powerUpsCollected: number;
|
|
1942
|
+
}
|
|
1943
|
+
class PixelParty {
|
|
1944
|
+
constructor(data: Record<string, unknown>);
|
|
1945
|
+
wins: number;
|
|
1946
|
+
gamesPlayed: number;
|
|
1947
|
+
losses: number;
|
|
1948
|
+
WLRatio: number;
|
|
1949
|
+
roundsPlayed: number;
|
|
1950
|
+
powerUpsCollected: number;
|
|
1951
|
+
normal: PixelPartyGameMode;
|
|
1952
|
+
hyper: PixelPartyGameMode;
|
|
1953
|
+
highestRound: number;
|
|
1954
|
+
musicVolume: number;
|
|
1955
|
+
colorBlind: object;
|
|
1956
|
+
}
|
|
1957
|
+
class ThrowOut {
|
|
1958
|
+
constructor(data: Record<string, unknown>);
|
|
1959
|
+
wins: number;
|
|
1960
|
+
kills: number;
|
|
1961
|
+
deaths: number;
|
|
1962
|
+
KDRatio: number;
|
|
1770
1963
|
}
|
|
1771
1964
|
class Zombies {
|
|
1772
1965
|
constructor(data: Record<string, unknown>);
|
|
1773
1966
|
overall: ZombiesStats;
|
|
1774
|
-
deadEnd:
|
|
1775
|
-
badBlood:
|
|
1776
|
-
alienArcadium:
|
|
1967
|
+
deadEnd: ZombiesStats;
|
|
1968
|
+
badBlood: ZombiesStats;
|
|
1969
|
+
alienArcadium: ZombiesStats;
|
|
1970
|
+
prison: ZombiesStats;
|
|
1777
1971
|
killsByZombie: Record<string, number>;
|
|
1778
1972
|
bulletsHit: number;
|
|
1779
1973
|
bulletsShot: number;
|
|
@@ -1781,13 +1975,6 @@ declare module 'hypixel-api-reborn' {
|
|
|
1781
1975
|
headshots: number;
|
|
1782
1976
|
headshotAccuracy: number;
|
|
1783
1977
|
}
|
|
1784
|
-
class ZombieMap {
|
|
1785
|
-
constructor(data: Record<string, unknown>, mapName: string);
|
|
1786
|
-
normal: ZombiesStats;
|
|
1787
|
-
hard: ZombiesStats;
|
|
1788
|
-
rip: ZombiesStats;
|
|
1789
|
-
overall: ZombiesStats;
|
|
1790
|
-
}
|
|
1791
1978
|
class ZombiesStats {
|
|
1792
1979
|
constructor(data: Record<string, unknown>, type?: string);
|
|
1793
1980
|
bestRound: number;
|
|
@@ -1804,35 +1991,30 @@ declare module 'hypixel-api-reborn' {
|
|
|
1804
1991
|
zombieKills: number;
|
|
1805
1992
|
}
|
|
1806
1993
|
|
|
1807
|
-
class
|
|
1994
|
+
class ArenaBrawlMode {
|
|
1808
1995
|
constructor(data: Record<string, unknown>);
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
wins: number;
|
|
1832
|
-
losses: number;
|
|
1833
|
-
WLRatio: number;
|
|
1834
|
-
};
|
|
1835
|
-
};
|
|
1996
|
+
damage: number;
|
|
1997
|
+
kills: number;
|
|
1998
|
+
deaths: number;
|
|
1999
|
+
KDRatio: number;
|
|
2000
|
+
healed: number;
|
|
2001
|
+
wins: number;
|
|
2002
|
+
losses: number;
|
|
2003
|
+
WLRatio: number;
|
|
2004
|
+
games: number;
|
|
2005
|
+
winstreak: number;
|
|
2006
|
+
}
|
|
2007
|
+
class ArenaBrawl {
|
|
2008
|
+
constructor(data: Record<string, unknown>);
|
|
2009
|
+
coins: number;
|
|
2010
|
+
coinsSpent: number;
|
|
2011
|
+
wins: number;
|
|
2012
|
+
keys: number;
|
|
2013
|
+
chests: number;
|
|
2014
|
+
rune: string;
|
|
2015
|
+
'1v1': ArenaBrawlMode;
|
|
2016
|
+
'2v2': ArenaBrawlMode;
|
|
2017
|
+
'4v4': ArenaBrawlMode;
|
|
1836
2018
|
}
|
|
1837
2019
|
class Paintball {
|
|
1838
2020
|
constructor(data: Record<string, unknown>);
|
|
@@ -1841,45 +2023,59 @@ declare module 'hypixel-api-reborn' {
|
|
|
1841
2023
|
deaths: number;
|
|
1842
2024
|
KDRatio: number;
|
|
1843
2025
|
wins: number;
|
|
1844
|
-
losses: number;
|
|
1845
|
-
WLRatio: number;
|
|
1846
2026
|
shotsFired: number;
|
|
1847
2027
|
killstreaks: number;
|
|
1848
|
-
|
|
2028
|
+
forceFieldTime: number;
|
|
1849
2029
|
hat: string;
|
|
2030
|
+
adrenaline: number;
|
|
2031
|
+
endurance: number;
|
|
2032
|
+
fortune: number;
|
|
2033
|
+
godfather: number;
|
|
2034
|
+
superluck: number;
|
|
2035
|
+
transfusion: number;
|
|
2036
|
+
}
|
|
2037
|
+
class QuakecraftMode {
|
|
2038
|
+
constructor(data: Record<string, unknown>);
|
|
2039
|
+
wins: number;
|
|
2040
|
+
kills: number;
|
|
2041
|
+
deaths: number;
|
|
2042
|
+
KDRatio: number;
|
|
2043
|
+
killstreaks: number;
|
|
2044
|
+
distanceTravelled: number;
|
|
2045
|
+
shotsFired: number;
|
|
2046
|
+
headshots: number;
|
|
1850
2047
|
}
|
|
1851
2048
|
class Quakecraft {
|
|
1852
2049
|
constructor(data: Record<string, unknown>);
|
|
1853
2050
|
coins: number;
|
|
2051
|
+
solo: QuakecraftMode;
|
|
2052
|
+
teams: QuakecraftMode;
|
|
2053
|
+
wins: number;
|
|
1854
2054
|
kills: number;
|
|
1855
2055
|
deaths: number;
|
|
1856
2056
|
KDRatio: number;
|
|
1857
|
-
|
|
2057
|
+
killstreaks: number;
|
|
1858
2058
|
distanceTravelled: number;
|
|
1859
|
-
headshots: number;
|
|
1860
2059
|
shotsFired: number;
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
shotsFired: number;
|
|
1881
|
-
killstreaks: number;
|
|
1882
|
-
};
|
|
2060
|
+
headshots: number;
|
|
2061
|
+
instantRespawn: boolean;
|
|
2062
|
+
killPrefixColor: string;
|
|
2063
|
+
showPrefix: boolean;
|
|
2064
|
+
killSound: string;
|
|
2065
|
+
barrel: string;
|
|
2066
|
+
case: string;
|
|
2067
|
+
muzzle: string;
|
|
2068
|
+
sight: string;
|
|
2069
|
+
trigger: string;
|
|
2070
|
+
}
|
|
2071
|
+
class TurboKartRacersMap {
|
|
2072
|
+
constructor(data: Record<string, unknown>, mapName: string);
|
|
2073
|
+
map: string;
|
|
2074
|
+
plays: number;
|
|
2075
|
+
boxPickups: number;
|
|
2076
|
+
bronzeTrophies: number;
|
|
2077
|
+
silverTrophies: number;
|
|
2078
|
+
goldTrophies: number;
|
|
1883
2079
|
}
|
|
1884
2080
|
class TurboKartRacers {
|
|
1885
2081
|
constructor(data: Record<string, unknown>);
|
|
@@ -1902,31 +2098,11 @@ declare module 'hypixel-api-reborn' {
|
|
|
1902
2098
|
| 'TEDDY'
|
|
1903
2099
|
| 'TRUCK'
|
|
1904
2100
|
| 'JERRY';
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
retroBronzeTrophies: number;
|
|
1911
|
-
retroSilverTrophies: number;
|
|
1912
|
-
retroGoldTrophies: number;
|
|
1913
|
-
retroBoxPickups: number;
|
|
1914
|
-
hypixelgpBronzeTrophies: number;
|
|
1915
|
-
hypixelgpSilverTrophies: number;
|
|
1916
|
-
hypixelgpGoldTrophies: number;
|
|
1917
|
-
hypixelgpBoxPickups: number;
|
|
1918
|
-
olympusBronzeTrophies: number;
|
|
1919
|
-
olympusSilverTrophies: number;
|
|
1920
|
-
olympusGoldTrophies: number;
|
|
1921
|
-
olympusBoxPickups: number;
|
|
1922
|
-
junglerushBronzeTrophies: number;
|
|
1923
|
-
junglerushSilverTrophies: number;
|
|
1924
|
-
junglerushGoldTrophies: number;
|
|
1925
|
-
junglerushBoxPickups: number;
|
|
1926
|
-
canyonBronzeTrophies: number;
|
|
1927
|
-
canyonSilverTrophies: number;
|
|
1928
|
-
canyonGoldTrophies: number;
|
|
1929
|
-
canyonBoxPickups: number;
|
|
2101
|
+
retro: TurboKartRacersMap;
|
|
2102
|
+
hypixelgp: TurboKartRacersMap;
|
|
2103
|
+
olympus: TurboKartRacersMap;
|
|
2104
|
+
junglerush: TurboKartRacersMap;
|
|
2105
|
+
canyon: TurboKartRacersMap;
|
|
1930
2106
|
bananaHitsReceived: number;
|
|
1931
2107
|
bananaHitsSent: number;
|
|
1932
2108
|
blueTorpedoHit: number;
|
|
@@ -1944,6 +2120,16 @@ declare module 'hypixel-api-reborn' {
|
|
|
1944
2120
|
WLRatio: number;
|
|
1945
2121
|
assists: number;
|
|
1946
2122
|
}
|
|
2123
|
+
class WarlordsClass {
|
|
2124
|
+
constructor(data: Record<string, unknown>, className: string);
|
|
2125
|
+
wins: number;
|
|
2126
|
+
losses: number;
|
|
2127
|
+
WLRatio: number;
|
|
2128
|
+
gamesPlayed: number;
|
|
2129
|
+
damage: number;
|
|
2130
|
+
heal: number;
|
|
2131
|
+
damagePrevented: number;
|
|
2132
|
+
}
|
|
1947
2133
|
class Warlords {
|
|
1948
2134
|
constructor(data: Record<string, unknown>);
|
|
1949
2135
|
coins: number;
|
|
@@ -1953,49 +2139,154 @@ declare module 'hypixel-api-reborn' {
|
|
|
1953
2139
|
wins: number;
|
|
1954
2140
|
losses: number;
|
|
1955
2141
|
WLRatio: number;
|
|
2142
|
+
winstreak: number;
|
|
1956
2143
|
assists: number;
|
|
1957
2144
|
class: string;
|
|
2145
|
+
pyromancer: WarlordsClass;
|
|
2146
|
+
mage: WarlordsClass;
|
|
2147
|
+
thunderlord: WarlordsClass;
|
|
2148
|
+
shaman: WarlordsClass;
|
|
2149
|
+
earthwarden: WarlordsClass;
|
|
2150
|
+
aquamancer: WarlordsClass;
|
|
2151
|
+
paladin: WarlordsClass;
|
|
2152
|
+
avenger: WarlordsClass;
|
|
2153
|
+
warrior: WarlordsClass;
|
|
2154
|
+
defender: WarlordsClass;
|
|
2155
|
+
cryomancer: WarlordsClass;
|
|
2156
|
+
crusader: WarlordsClass;
|
|
2157
|
+
berserker: WarlordsClass;
|
|
2158
|
+
protector: WarlordsClass;
|
|
2159
|
+
revenant: WarlordsClass;
|
|
2160
|
+
spiritguard: WarlordsClass;
|
|
2161
|
+
}
|
|
2162
|
+
class BlitzSGKit {
|
|
2163
|
+
constructor(data: Record<string, unknown>, kitName: string);
|
|
2164
|
+
level: number;
|
|
2165
|
+
exp: number;
|
|
2166
|
+
kills: number;
|
|
2167
|
+
deaths: number;
|
|
2168
|
+
KDRatio: number;
|
|
2169
|
+
wins: number;
|
|
2170
|
+
gamesPlayed: number;
|
|
2171
|
+
losses: number;
|
|
2172
|
+
WLRatio: number;
|
|
2173
|
+
arrowsShot: number;
|
|
2174
|
+
arrowsHit: number;
|
|
2175
|
+
bowAccuracy: number;
|
|
2176
|
+
damage: number;
|
|
2177
|
+
damageTaken: number;
|
|
2178
|
+
potionsDrunk: number;
|
|
2179
|
+
potionsThrown: number;
|
|
2180
|
+
playTime: number;
|
|
2181
|
+
mobsSpawned: number;
|
|
2182
|
+
chestsOpened: number;
|
|
1958
2183
|
}
|
|
1959
2184
|
class BlitzSurvivalGames {
|
|
1960
2185
|
constructor(data: Record<string, unknown>);
|
|
1961
2186
|
coins: number;
|
|
1962
2187
|
kills: number;
|
|
2188
|
+
kit: string;
|
|
2189
|
+
killsSolo: number;
|
|
2190
|
+
killsTeams: number;
|
|
1963
2191
|
deaths: number;
|
|
1964
2192
|
KDRatio: number;
|
|
2193
|
+
wins: number;
|
|
1965
2194
|
winsSolo: number;
|
|
1966
2195
|
winsTeam: number;
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
2196
|
+
gamesPlayed: number;
|
|
2197
|
+
losses: number;
|
|
2198
|
+
WLRatio: number;
|
|
2199
|
+
arrowsShot: number;
|
|
2200
|
+
arrowsHit: number;
|
|
2201
|
+
bowAccuracy: number;
|
|
2202
|
+
damage: number;
|
|
2203
|
+
damageTaken: number;
|
|
2204
|
+
potionsDrunk: number;
|
|
2205
|
+
potionsThrown: number;
|
|
2206
|
+
mobsSpawned: number;
|
|
2207
|
+
playTime: number;
|
|
2208
|
+
blitzUses: number;
|
|
2209
|
+
chestsOpened: number;
|
|
2210
|
+
archer: BlitzSGKit;
|
|
2211
|
+
meatmaster: BlitzSGKit;
|
|
2212
|
+
speleologist: BlitzSGKit;
|
|
2213
|
+
baker: BlitzSGKit;
|
|
2214
|
+
knight: BlitzSGKit;
|
|
2215
|
+
guardian: BlitzSGKit;
|
|
2216
|
+
scout: BlitzSGKit;
|
|
2217
|
+
hunter: BlitzSGKit;
|
|
2218
|
+
hypeTrain: BlitzSGKit;
|
|
2219
|
+
fisherman: BlitzSGKit;
|
|
2220
|
+
armorer: BlitzSGKit;
|
|
2221
|
+
horsetamer: BlitzSGKit;
|
|
2222
|
+
astronaut: BlitzSGKit;
|
|
2223
|
+
troll: BlitzSGKit;
|
|
2224
|
+
reaper: BlitzSGKit;
|
|
2225
|
+
shark: BlitzSGKit;
|
|
2226
|
+
reddragon: BlitzSGKit;
|
|
2227
|
+
toxicologist: BlitzSGKit;
|
|
2228
|
+
rogue: BlitzSGKit;
|
|
2229
|
+
warlock: BlitzSGKit;
|
|
2230
|
+
slimeyslime: BlitzSGKit;
|
|
2231
|
+
jockey: BlitzSGKit;
|
|
2232
|
+
golem: BlitzSGKit;
|
|
2233
|
+
viking: BlitzSGKit;
|
|
2234
|
+
shadowKnight: BlitzSGKit;
|
|
2235
|
+
pigman: BlitzSGKit;
|
|
2236
|
+
paladin: BlitzSGKit;
|
|
2237
|
+
necromancer: BlitzSGKit;
|
|
2238
|
+
florist: BlitzSGKit;
|
|
2239
|
+
diver: BlitzSGKit;
|
|
2240
|
+
arachnologist: BlitzSGKit;
|
|
2241
|
+
blaze: BlitzSGKit;
|
|
2242
|
+
wolftamer: BlitzSGKit;
|
|
2243
|
+
tim: BlitzSGKit;
|
|
2244
|
+
farmer: BlitzSGKit;
|
|
2245
|
+
creepertamer: BlitzSGKit;
|
|
2246
|
+
snowman: BlitzSGKit;
|
|
2247
|
+
}
|
|
2248
|
+
class VampireZRole {
|
|
2249
|
+
constructor(data: Record<string, unknown>, role: string);
|
|
2250
|
+
kills: number;
|
|
2251
|
+
deaths: number;
|
|
2252
|
+
KDRatio: number;
|
|
2253
|
+
wins: number;
|
|
1981
2254
|
}
|
|
1982
2255
|
class VampireZ {
|
|
1983
2256
|
constructor(data: Record<string, unknown>);
|
|
1984
2257
|
coins: number;
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
2258
|
+
goldBought: number;
|
|
2259
|
+
blood: boolean;
|
|
2260
|
+
zombieKills: number;
|
|
2261
|
+
human: VampireZRole;
|
|
2262
|
+
vampire: VampireZRole;
|
|
2263
|
+
kills: number;
|
|
2264
|
+
deaths: number;
|
|
2265
|
+
KDRatio: number;
|
|
2266
|
+
wins: number;
|
|
2267
|
+
}
|
|
2268
|
+
class SmashHeroesMode {
|
|
2269
|
+
constructor(data: Record<string, unknown>, mode: string);
|
|
2270
|
+
kills: number;
|
|
2271
|
+
deaths: number;
|
|
2272
|
+
KDRatio: number;
|
|
2273
|
+
wins: number;
|
|
2274
|
+
losses: number;
|
|
2275
|
+
WLRatio: number;
|
|
2276
|
+
}
|
|
2277
|
+
class SmashHeoresHero {
|
|
2278
|
+
constructor(data: Record<string, unknown>, hero: string);
|
|
2279
|
+
name: string;
|
|
2280
|
+
level: number;
|
|
2281
|
+
xp: number;
|
|
2282
|
+
prestige: number;
|
|
2283
|
+
playedGames: number;
|
|
2284
|
+
kills: number;
|
|
2285
|
+
deaths: number;
|
|
2286
|
+
KDRatio: number;
|
|
2287
|
+
wins: number;
|
|
2288
|
+
losses: number;
|
|
2289
|
+
WLRatio: number;
|
|
1999
2290
|
}
|
|
2000
2291
|
class SmashHeroes {
|
|
2001
2292
|
constructor(data: Record<string, unknown>);
|
|
@@ -2009,46 +2300,27 @@ declare module 'hypixel-api-reborn' {
|
|
|
2009
2300
|
wins: number;
|
|
2010
2301
|
losses: number;
|
|
2011
2302
|
WLRatio: number;
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
KDRatio: number;
|
|
2017
|
-
wins: number;
|
|
2018
|
-
losses: number;
|
|
2019
|
-
WLRatio: number;
|
|
2020
|
-
};
|
|
2021
|
-
'2v2': {
|
|
2022
|
-
kills: number;
|
|
2023
|
-
deaths: number;
|
|
2024
|
-
KDRatio: number;
|
|
2025
|
-
wins: number;
|
|
2026
|
-
losses: number;
|
|
2027
|
-
WLRatio: number;
|
|
2028
|
-
};
|
|
2029
|
-
'2v2v2': {
|
|
2030
|
-
kills: number;
|
|
2031
|
-
deaths: number;
|
|
2032
|
-
KDRatio: number;
|
|
2033
|
-
wins: number;
|
|
2034
|
-
losses: number;
|
|
2035
|
-
WLRatio: number;
|
|
2036
|
-
};
|
|
2037
|
-
};
|
|
2303
|
+
smashed: number;
|
|
2304
|
+
'1v1v1v1': SmashHeroesMode;
|
|
2305
|
+
'2v2': SmashHeroesMode;
|
|
2306
|
+
'2v2v2': SmashHeroesMode;
|
|
2038
2307
|
activeClass: string;
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2308
|
+
theBulk: SmashHeoresHero;
|
|
2309
|
+
cakeMonster: SmashHeoresHero;
|
|
2310
|
+
generalCluck: SmashHeoresHero;
|
|
2311
|
+
botmun: SmashHeoresHero;
|
|
2312
|
+
marauder: SmashHeoresHero;
|
|
2313
|
+
pug: SmashHeoresHero;
|
|
2314
|
+
tinman: SmashHeoresHero;
|
|
2315
|
+
spoderman: SmashHeoresHero;
|
|
2316
|
+
frosty: SmashHeoresHero;
|
|
2317
|
+
sergeantShield: SmashHeoresHero;
|
|
2318
|
+
skullfire: SmashHeoresHero;
|
|
2319
|
+
goku: SmashHeoresHero;
|
|
2320
|
+
sanic: SmashHeoresHero;
|
|
2321
|
+
duskCrawler: SmashHeoresHero;
|
|
2322
|
+
shoopDaWhoop: SmashHeoresHero;
|
|
2323
|
+
greenHood: SmashHeoresHero;
|
|
2052
2324
|
}
|
|
2053
2325
|
class SkyblockNews {
|
|
2054
2326
|
constructor(data: Record<string, unknown>);
|
|
@@ -2322,11 +2594,33 @@ declare module 'hypixel-api-reborn' {
|
|
|
2322
2594
|
candyUsed: number;
|
|
2323
2595
|
skin: string | null;
|
|
2324
2596
|
}
|
|
2597
|
+
class SkyblockGarden {
|
|
2598
|
+
constructor(data: Record<string, unknown>);
|
|
2599
|
+
level: SKYBLOCK_SKILL_DATA;
|
|
2600
|
+
barnSkin: string;
|
|
2601
|
+
unlockedPlots: string[];
|
|
2602
|
+
visitors: SKYBLOCK_GARDEN_VISITOR;
|
|
2603
|
+
cropMilestones: {
|
|
2604
|
+
wheat: SKYBLOCK_SKILL_DATA;
|
|
2605
|
+
carrot: SKYBLOCK_SKILL_DATA;
|
|
2606
|
+
sugarCane: SKYBLOCK_SKILL_DATA;
|
|
2607
|
+
potato: SKYBLOCK_SKILL_DATA;
|
|
2608
|
+
pumpkin: SKYBLOCK_SKILL_DATA;
|
|
2609
|
+
melon: SKYBLOCK_SKILL_DATA;
|
|
2610
|
+
cactus: SKYBLOCK_SKILL_DATA;
|
|
2611
|
+
cocoBeans: SKYBLOCK_SKILL_DATA;
|
|
2612
|
+
mushroom: SKYBLOCK_SKILL_DATA;
|
|
2613
|
+
netherWart: SKYBLOCK_SKILL_DATA;
|
|
2614
|
+
};
|
|
2615
|
+
composter: SKYBLOCK_GARDEN_COMPOSTER;
|
|
2616
|
+
cropUpgrades: SKYBLOCK_GARDEN_CROPS;
|
|
2617
|
+
}
|
|
2325
2618
|
class SkyblockMember {
|
|
2326
2619
|
constructor(data: Record<string, unknown>);
|
|
2327
2620
|
uuid: string;
|
|
2328
2621
|
player?: Player;
|
|
2329
2622
|
museum?: object;
|
|
2623
|
+
garden?: SkyblockGarden;
|
|
2330
2624
|
profileName: string;
|
|
2331
2625
|
profileId: string;
|
|
2332
2626
|
firstJoinTimestamp: number;
|
|
@@ -2780,132 +3074,102 @@ declare module 'hypixel-api-reborn' {
|
|
|
2780
3074
|
static CODES: GAME_CODE[];
|
|
2781
3075
|
static NAMES: GAME_NAME[];
|
|
2782
3076
|
}
|
|
2783
|
-
class
|
|
2784
|
-
constructor(data: Record<string, unknown
|
|
2785
|
-
coins: number;
|
|
2786
|
-
souls: number;
|
|
2787
|
-
tokens: number;
|
|
2788
|
-
winstreak: number;
|
|
3077
|
+
class SkyWarsMode {
|
|
3078
|
+
constructor(data: Record<string, unknown>, gamemode: string);
|
|
2789
3079
|
kills: number;
|
|
3080
|
+
deaths: number;
|
|
3081
|
+
KDRatio: number;
|
|
3082
|
+
wins: number;
|
|
2790
3083
|
losses: number;
|
|
3084
|
+
WLRatio: number;
|
|
3085
|
+
}
|
|
3086
|
+
class SkywarsModeStats {
|
|
3087
|
+
constructor(data: Record<string, unknown>, gamemode: string);
|
|
3088
|
+
activeKit: string;
|
|
3089
|
+
killstreak: number;
|
|
3090
|
+
kills: number;
|
|
3091
|
+
voidKills: number;
|
|
3092
|
+
meleeKills: number;
|
|
3093
|
+
bowKills: number;
|
|
3094
|
+
mobKills: number;
|
|
3095
|
+
assists: number;
|
|
2791
3096
|
deaths: number;
|
|
3097
|
+
KDRatio: number;
|
|
2792
3098
|
wins: number;
|
|
3099
|
+
losses: number;
|
|
3100
|
+
WLRatio: number;
|
|
3101
|
+
gamesPlayed: number;
|
|
3102
|
+
survivedPlayers: number;
|
|
3103
|
+
chestsOpened: number;
|
|
3104
|
+
timePlayed: number;
|
|
3105
|
+
shard: number;
|
|
3106
|
+
longestBowShot: number;
|
|
3107
|
+
arrowsShot: number;
|
|
3108
|
+
arrowsHit: number;
|
|
3109
|
+
bowAccuracy: number;
|
|
3110
|
+
fastestWin: number;
|
|
2793
3111
|
heads: number;
|
|
3112
|
+
}
|
|
3113
|
+
class SkywarsMode {
|
|
3114
|
+
constructor(data: Record<string, unknown>, gamemode: string);
|
|
3115
|
+
kills: number;
|
|
3116
|
+
deaths: number;
|
|
3117
|
+
KDRatio: number;
|
|
3118
|
+
wins: number;
|
|
3119
|
+
losses: number;
|
|
3120
|
+
WLRatio: number;
|
|
3121
|
+
}
|
|
3122
|
+
class SkyWars {
|
|
3123
|
+
constructor(data: Record<string, unknown>);
|
|
3124
|
+
coins: number;
|
|
3125
|
+
souls: number;
|
|
3126
|
+
tokens: number;
|
|
2794
3127
|
experience: number;
|
|
2795
3128
|
level: number;
|
|
2796
|
-
levelProgress:
|
|
2797
|
-
currentLevelXp: number;
|
|
2798
|
-
xpToNextLevel: number;
|
|
2799
|
-
percent: number;
|
|
2800
|
-
xpNextLevel: number;
|
|
2801
|
-
};
|
|
3129
|
+
levelProgress: LevelProgress;
|
|
2802
3130
|
levelFormatted: string;
|
|
2803
3131
|
prestige: SKYWARS_PRESTIGE;
|
|
2804
3132
|
prestigeIcon: SKYWARS_PRESTIGE_ICON;
|
|
2805
|
-
playedGames: number;
|
|
2806
|
-
KDRatio: number;
|
|
2807
|
-
WLRatio: number;
|
|
2808
3133
|
opals: number;
|
|
2809
3134
|
avarice: number;
|
|
2810
3135
|
tenacity: number;
|
|
2811
3136
|
shards: number;
|
|
2812
3137
|
angelOfDeathLevel: number;
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
deaths: number;
|
|
2849
|
-
KDRatio: number;
|
|
2850
|
-
WLRatio: number;
|
|
2851
|
-
};
|
|
2852
|
-
normal: {
|
|
2853
|
-
kills: number;
|
|
2854
|
-
wins: number;
|
|
2855
|
-
losses: number;
|
|
2856
|
-
deaths: number;
|
|
2857
|
-
KDRatio: number;
|
|
2858
|
-
WLRatio: number;
|
|
2859
|
-
};
|
|
2860
|
-
insane: {
|
|
2861
|
-
kills: number;
|
|
2862
|
-
wins: number;
|
|
2863
|
-
losses: number;
|
|
2864
|
-
deaths: number;
|
|
2865
|
-
KDRatio: number;
|
|
2866
|
-
WLRatio: number;
|
|
2867
|
-
};
|
|
2868
|
-
};
|
|
2869
|
-
mega: {
|
|
2870
|
-
overall: {
|
|
2871
|
-
winstreak: number;
|
|
2872
|
-
playedGames: number;
|
|
2873
|
-
kills: number;
|
|
2874
|
-
wins: number;
|
|
2875
|
-
losses: number;
|
|
2876
|
-
deaths: number;
|
|
2877
|
-
KDRatio: number;
|
|
2878
|
-
WLRatio: number;
|
|
2879
|
-
};
|
|
2880
|
-
solo: {
|
|
2881
|
-
playedGames: number;
|
|
2882
|
-
kills: number;
|
|
2883
|
-
wins: number;
|
|
2884
|
-
losses: number;
|
|
2885
|
-
deaths: number;
|
|
2886
|
-
KDRatio: number;
|
|
2887
|
-
WLRatio: number;
|
|
2888
|
-
};
|
|
2889
|
-
doubles: {
|
|
2890
|
-
playedGames: number;
|
|
2891
|
-
kills: number;
|
|
2892
|
-
wins: number;
|
|
2893
|
-
losses: number;
|
|
2894
|
-
deaths: number;
|
|
2895
|
-
KDRatio: number;
|
|
2896
|
-
WLRatio: number;
|
|
2897
|
-
};
|
|
2898
|
-
};
|
|
2899
|
-
lab: {
|
|
2900
|
-
winstreak: number;
|
|
2901
|
-
playedGames: number;
|
|
2902
|
-
kills: number;
|
|
2903
|
-
wins: number;
|
|
2904
|
-
losses: number;
|
|
2905
|
-
deaths: number;
|
|
2906
|
-
KDRatio: number;
|
|
2907
|
-
WLRatio: number;
|
|
2908
|
-
};
|
|
3138
|
+
killstreak: number;
|
|
3139
|
+
kills: number;
|
|
3140
|
+
voidKills: number;
|
|
3141
|
+
meleeKills: number;
|
|
3142
|
+
bowKills: number;
|
|
3143
|
+
mobKills: number;
|
|
3144
|
+
assists: number;
|
|
3145
|
+
deaths: number;
|
|
3146
|
+
KDRatio: number;
|
|
3147
|
+
wins: number;
|
|
3148
|
+
losses: number;
|
|
3149
|
+
WLRatio: number;
|
|
3150
|
+
gamesPlayed: number;
|
|
3151
|
+
survivedPlayers: number;
|
|
3152
|
+
chestsOpened: number;
|
|
3153
|
+
timePlayed: number;
|
|
3154
|
+
shard: number;
|
|
3155
|
+
longestBowShot: number;
|
|
3156
|
+
arrowsShot: number;
|
|
3157
|
+
arrowsHit: number;
|
|
3158
|
+
bowAccuracy: number;
|
|
3159
|
+
fastestWin: number;
|
|
3160
|
+
heads: number;
|
|
3161
|
+
blocksPlaced: number;
|
|
3162
|
+
blocksBroken: number;
|
|
3163
|
+
eggThrown: number;
|
|
3164
|
+
enderpearlsThrown: number;
|
|
3165
|
+
solo: SkywarsModeStats;
|
|
3166
|
+
soloNormal: SkywarsMode;
|
|
3167
|
+
soloInsane: SkywarsMode;
|
|
3168
|
+
team: SkywarsModeStats;
|
|
3169
|
+
teamNormal: SkywarsMode;
|
|
3170
|
+
mega: SkywarsMode;
|
|
3171
|
+
megaDoubles: SkywarsMode;
|
|
3172
|
+
lab: SkywarsMode;
|
|
2909
3173
|
packages: SkywarsPackages;
|
|
2910
3174
|
}
|
|
2911
3175
|
class SkywarsPackages {
|
|
@@ -3447,63 +3711,51 @@ declare module 'hypixel-api-reborn' {
|
|
|
3447
3711
|
totalSlumberTickets: number;
|
|
3448
3712
|
}
|
|
3449
3713
|
|
|
3714
|
+
class UHCGamemode {
|
|
3715
|
+
constructor(data: Record<string, unknown>, mode: string);
|
|
3716
|
+
kills: number;
|
|
3717
|
+
deaths: number;
|
|
3718
|
+
wins: number;
|
|
3719
|
+
headsEaten: number;
|
|
3720
|
+
ultimatesCrafted: number;
|
|
3721
|
+
extraUltimatesCrafted: number;
|
|
3722
|
+
}
|
|
3450
3723
|
class UHC {
|
|
3451
3724
|
constructor(data: Record<string, unknown>);
|
|
3452
3725
|
coins: number;
|
|
3453
3726
|
score: number;
|
|
3727
|
+
kit: string;
|
|
3728
|
+
solo: UHCGamemode;
|
|
3729
|
+
team: UHCGamemode;
|
|
3730
|
+
redVsBlue: UHCGamemode;
|
|
3731
|
+
noDiamond: UHCGamemode;
|
|
3732
|
+
brawl: UHCGamemode;
|
|
3733
|
+
soloBrawl: UHCGamemode;
|
|
3734
|
+
duoBrawl: UHCGamemode;
|
|
3735
|
+
wins: number;
|
|
3454
3736
|
kills: number;
|
|
3455
3737
|
deaths: number;
|
|
3456
|
-
|
|
3738
|
+
KDRatio: number;
|
|
3457
3739
|
headsEaten: number;
|
|
3740
|
+
ultimatesCrafted: number;
|
|
3741
|
+
extraUltimatesCrafted: number;
|
|
3458
3742
|
starLevel: number;
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
};
|
|
3471
|
-
redVsBlue: {
|
|
3472
|
-
wins: number;
|
|
3473
|
-
kills: number;
|
|
3474
|
-
deaths: number;
|
|
3475
|
-
headsEaten: number;
|
|
3476
|
-
};
|
|
3477
|
-
noDiamond: {
|
|
3478
|
-
wins: number;
|
|
3479
|
-
kills: number;
|
|
3480
|
-
deaths: number;
|
|
3481
|
-
headsEaten: number;
|
|
3482
|
-
};
|
|
3483
|
-
brawl: {
|
|
3484
|
-
wins: number;
|
|
3485
|
-
kills: number;
|
|
3486
|
-
deaths: number;
|
|
3487
|
-
headsEaten: number;
|
|
3488
|
-
};
|
|
3489
|
-
brawlSolo: {
|
|
3490
|
-
wins: number;
|
|
3491
|
-
kills: number;
|
|
3492
|
-
deaths: number;
|
|
3493
|
-
headsEaten: number;
|
|
3494
|
-
};
|
|
3495
|
-
brawlDuo: {
|
|
3496
|
-
wins: number;
|
|
3497
|
-
kills: number;
|
|
3498
|
-
deaths: number;
|
|
3499
|
-
headsEaten: number;
|
|
3500
|
-
};
|
|
3743
|
+
}
|
|
3744
|
+
class SpeedUHCMode {
|
|
3745
|
+
constructor(data: Record<string, unknown>, mode: string);
|
|
3746
|
+
kills: number;
|
|
3747
|
+
deaths: number;
|
|
3748
|
+
wins: number;
|
|
3749
|
+
losses: number;
|
|
3750
|
+
playedGames: number;
|
|
3751
|
+
winstreak: number;
|
|
3752
|
+
killStreak: number;
|
|
3753
|
+
assists: number;
|
|
3501
3754
|
}
|
|
3502
3755
|
class SpeedUHC {
|
|
3503
3756
|
constructor(data: Record<string, unknown>);
|
|
3504
3757
|
coins: number;
|
|
3505
3758
|
kills: number;
|
|
3506
|
-
killstreak: number;
|
|
3507
3759
|
deaths: number;
|
|
3508
3760
|
KDRatio: number;
|
|
3509
3761
|
wins: number;
|
|
@@ -3511,66 +3763,217 @@ declare module 'hypixel-api-reborn' {
|
|
|
3511
3763
|
WLRatio: number;
|
|
3512
3764
|
playedGames: number;
|
|
3513
3765
|
winstreak: number;
|
|
3766
|
+
killstreak: number;
|
|
3514
3767
|
blocksBroken: number;
|
|
3515
3768
|
blocksPlaced: number;
|
|
3516
3769
|
quits: number;
|
|
3517
3770
|
itemsEnchanted: number;
|
|
3518
3771
|
assists: number;
|
|
3519
|
-
solo:
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3772
|
+
solo: SpeedUHCMode;
|
|
3773
|
+
soloNormal: SpeedUHCMode;
|
|
3774
|
+
soloInsane: SpeedUHCMode;
|
|
3775
|
+
team: SpeedUHCMode;
|
|
3776
|
+
teamNormal: SpeedUHCMode;
|
|
3777
|
+
teamInsane: SpeedUHCMode;
|
|
3778
|
+
}
|
|
3779
|
+
class MurderMysteryModeStats {
|
|
3780
|
+
constructor(data: Record<string, unknown>, gamemode: string);
|
|
3781
|
+
goldPickedUp: number;
|
|
3782
|
+
kills: number;
|
|
3783
|
+
thrownKnifeKills: number;
|
|
3784
|
+
knifeKills: number;
|
|
3785
|
+
bowKills: number;
|
|
3786
|
+
trapKills: number;
|
|
3787
|
+
deaths: number;
|
|
3788
|
+
suicides: number;
|
|
3789
|
+
KDRatio: number;
|
|
3790
|
+
wins: number;
|
|
3791
|
+
winsAsDetective: number;
|
|
3792
|
+
winsAsMurderer: number;
|
|
3793
|
+
winsAsHero: number;
|
|
3794
|
+
playedGames: number;
|
|
3539
3795
|
}
|
|
3540
3796
|
class MurderMystery {
|
|
3541
3797
|
constructor(data: Record<string, unknown>);
|
|
3542
3798
|
tokens: number;
|
|
3799
|
+
goldPickedUp: number;
|
|
3543
3800
|
playedGames: number;
|
|
3544
3801
|
kills: number;
|
|
3802
|
+
thrownKnifeKills: number;
|
|
3803
|
+
knifeKills: number;
|
|
3804
|
+
trapKills: number;
|
|
3805
|
+
bowKills: number;
|
|
3806
|
+
killsAsMurderer: number;
|
|
3545
3807
|
deaths: number;
|
|
3808
|
+
KDRatio: number;
|
|
3546
3809
|
winsAsMurderer: number;
|
|
3547
3810
|
winsAsDetective: number;
|
|
3811
|
+
winsAsHero: number;
|
|
3812
|
+
fastestWinAsMurderer: number;
|
|
3813
|
+
fastestWinAsDetective: number;
|
|
3814
|
+
totalTimeSurvived: number;
|
|
3548
3815
|
wins: number;
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3816
|
+
suicides: number;
|
|
3817
|
+
classic: MurderMysteryModeStats;
|
|
3818
|
+
assassins: MurderMysteryModeStats;
|
|
3819
|
+
doubleUp: MurderMysteryModeStats;
|
|
3820
|
+
infection: MurderMysteryModeStats;
|
|
3821
|
+
}
|
|
3822
|
+
class DuelsGamemode {
|
|
3823
|
+
constructor(data: Record<string, unknown>, mode: string, title: string);
|
|
3824
|
+
title: string;
|
|
3825
|
+
winstreak: number;
|
|
3826
|
+
bestWinstreak: number;
|
|
3827
|
+
kills: number;
|
|
3828
|
+
deaths: number;
|
|
3829
|
+
KDRatio: number;
|
|
3830
|
+
wins: number;
|
|
3831
|
+
losses: number;
|
|
3832
|
+
WLRatio: number;
|
|
3833
|
+
playedGames: number;
|
|
3834
|
+
swings: number;
|
|
3835
|
+
hits: number;
|
|
3836
|
+
meleeAccuracy: number;
|
|
3837
|
+
bowShots: number;
|
|
3838
|
+
bowHits: number;
|
|
3839
|
+
bowAccuracy: number;
|
|
3840
|
+
blocksPlaced: number;
|
|
3841
|
+
healthRegenerated: number;
|
|
3842
|
+
goldenApplesEatan: number;
|
|
3843
|
+
goals: number;
|
|
3844
|
+
}
|
|
3845
|
+
class DuelsUHC {
|
|
3846
|
+
constructor(data: Record<string, unknown>, mode: string, title: string);
|
|
3847
|
+
title: string;
|
|
3848
|
+
winstreak: number;
|
|
3849
|
+
bestWinstreak: number;
|
|
3850
|
+
solo: DuelsGamemode;
|
|
3851
|
+
doubles: DuelsGamemode;
|
|
3852
|
+
fours: DuelsGamemode;
|
|
3853
|
+
deathmatch: DuelsGamemode;
|
|
3854
|
+
kills: number;
|
|
3855
|
+
deaths: number;
|
|
3856
|
+
KDRatio: number;
|
|
3857
|
+
wins: number;
|
|
3858
|
+
losses: number;
|
|
3859
|
+
WLRatio: number;
|
|
3860
|
+
playedGames: number;
|
|
3861
|
+
swings: number;
|
|
3862
|
+
hits: number;
|
|
3863
|
+
meleeAccuracy: number;
|
|
3864
|
+
bowShots: number;
|
|
3865
|
+
bowHits: number;
|
|
3866
|
+
bowAccuracy: number;
|
|
3867
|
+
blocksPlaced: number;
|
|
3868
|
+
healthRegenerated: number;
|
|
3869
|
+
goldenApplesEatan: number;
|
|
3870
|
+
}
|
|
3871
|
+
class DuelsSkyWars {
|
|
3872
|
+
constructor(data: Record<string, unknown>, mode: string, title: string);
|
|
3873
|
+
title: string;
|
|
3874
|
+
winstreak: number;
|
|
3875
|
+
bestWinstreak: number;
|
|
3876
|
+
solo: DuelsGamemode;
|
|
3877
|
+
doubles: DuelsGamemode;
|
|
3878
|
+
kills: number;
|
|
3879
|
+
deaths: number;
|
|
3880
|
+
KDRatio: number;
|
|
3881
|
+
wins: number;
|
|
3882
|
+
losses: number;
|
|
3883
|
+
WLRatio: number;
|
|
3884
|
+
playedGames: number;
|
|
3885
|
+
swings: number;
|
|
3886
|
+
hits: number;
|
|
3887
|
+
meleeAccuracy: number;
|
|
3888
|
+
bowShots: number;
|
|
3889
|
+
bowHits: number;
|
|
3890
|
+
bowAccuracy: number;
|
|
3891
|
+
blocksPlaced: number;
|
|
3892
|
+
healthRegenerated: number;
|
|
3893
|
+
goldenApplesEatan: number;
|
|
3894
|
+
}
|
|
3895
|
+
class DuelsMegaWalls {
|
|
3896
|
+
constructor(data: Record<string, unknown>, mode: string, title: string);
|
|
3897
|
+
title: string;
|
|
3898
|
+
winstreak: number;
|
|
3899
|
+
bestWinstreak: number;
|
|
3900
|
+
solo: DuelsGamemode;
|
|
3901
|
+
doubles: DuelsGamemode;
|
|
3902
|
+
kills: number;
|
|
3903
|
+
deaths: number;
|
|
3904
|
+
KDRatio: number;
|
|
3905
|
+
wins: number;
|
|
3906
|
+
losses: number;
|
|
3907
|
+
WLRatio: number;
|
|
3908
|
+
playedGames: number;
|
|
3909
|
+
swings: number;
|
|
3910
|
+
hits: number;
|
|
3911
|
+
meleeAccuracy: number;
|
|
3912
|
+
bowShots: number;
|
|
3913
|
+
bowHits: number;
|
|
3914
|
+
bowAccuracy: number;
|
|
3915
|
+
blocksPlaced: number;
|
|
3916
|
+
healthRegenerated: number;
|
|
3917
|
+
goldenApplesEatan: number;
|
|
3918
|
+
}
|
|
3919
|
+
class DuelsOP {
|
|
3920
|
+
constructor(data: Record<string, unknown>, mode: string, title: string);
|
|
3921
|
+
title: string;
|
|
3922
|
+
winstreak: number;
|
|
3923
|
+
bestWinstreak: number;
|
|
3924
|
+
solo: DuelsGamemode;
|
|
3925
|
+
doubles: DuelsGamemode;
|
|
3926
|
+
kills: number;
|
|
3927
|
+
deaths: number;
|
|
3928
|
+
KDRatio: number;
|
|
3929
|
+
wins: number;
|
|
3930
|
+
losses: number;
|
|
3931
|
+
WLRatio: number;
|
|
3932
|
+
playedGames: number;
|
|
3933
|
+
swings: number;
|
|
3934
|
+
hits: number;
|
|
3935
|
+
meleeAccuracy: number;
|
|
3936
|
+
bowShots: number;
|
|
3937
|
+
bowHits: number;
|
|
3938
|
+
bowAccuracy: number;
|
|
3939
|
+
blocksPlaced: number;
|
|
3940
|
+
healthRegenerated: number;
|
|
3941
|
+
goldenApplesEatan: number;
|
|
3942
|
+
}
|
|
3943
|
+
class DuelsBridge {
|
|
3944
|
+
constructor(data: Record<string, unknown>, mode: string, title: string);
|
|
3945
|
+
title: string;
|
|
3946
|
+
winstreak: number;
|
|
3947
|
+
bestWinstreak: number;
|
|
3948
|
+
solo: DuelsGamemode;
|
|
3949
|
+
doubles: DuelsGamemode;
|
|
3950
|
+
threes: DuelsGamemode;
|
|
3951
|
+
fours: DuelsGamemode;
|
|
3952
|
+
'2v2v2v2': DuelsGamemode;
|
|
3953
|
+
'3v3v3v3': DuelsGamemode;
|
|
3954
|
+
ctf: DuelsGamemode;
|
|
3955
|
+
kills: number;
|
|
3956
|
+
deaths: number;
|
|
3957
|
+
KDRatio: number;
|
|
3958
|
+
wins: number;
|
|
3959
|
+
losses: number;
|
|
3960
|
+
WLRatio: number;
|
|
3961
|
+
playedGames: number;
|
|
3962
|
+
swings: number;
|
|
3963
|
+
hits: number;
|
|
3964
|
+
meleeAccuracy: number;
|
|
3965
|
+
bowShots: number;
|
|
3966
|
+
bowHits: number;
|
|
3967
|
+
bowAccuracy: number;
|
|
3968
|
+
blocksPlaced: number;
|
|
3969
|
+
healthRegenerated: number;
|
|
3970
|
+
goldenApplesEatan: number;
|
|
3971
|
+
goals: number;
|
|
3570
3972
|
}
|
|
3571
3973
|
class Duels {
|
|
3572
|
-
|
|
3974
|
+
constructor(data: Record<string, unknown>);
|
|
3573
3975
|
tokens: number;
|
|
3976
|
+
title: string | null;
|
|
3574
3977
|
kills: number;
|
|
3575
3978
|
deaths: number;
|
|
3576
3979
|
KDRatio: number;
|
|
@@ -3580,381 +3983,43 @@ declare module 'hypixel-api-reborn' {
|
|
|
3580
3983
|
playedGames: number;
|
|
3581
3984
|
winstreak: number;
|
|
3582
3985
|
bestWinstreak: number;
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
WLRatio: number;
|
|
3608
|
-
playedGames: number;
|
|
3609
|
-
};
|
|
3610
|
-
bowspleef: {
|
|
3611
|
-
division?: string;
|
|
3612
|
-
winstreak: number;
|
|
3613
|
-
bestWinstreak: number;
|
|
3614
|
-
bowShots: number;
|
|
3615
|
-
deaths: number;
|
|
3616
|
-
wins: number;
|
|
3617
|
-
losses: number;
|
|
3618
|
-
WLRatio: number;
|
|
3619
|
-
playedGames: number;
|
|
3620
|
-
};
|
|
3621
|
-
uhc: {
|
|
3622
|
-
overall: {
|
|
3623
|
-
division?: string;
|
|
3624
|
-
winstreak: number;
|
|
3625
|
-
bestWinstreak: number;
|
|
3626
|
-
kills: number;
|
|
3627
|
-
deaths: number;
|
|
3628
|
-
KDRatio: number;
|
|
3629
|
-
wins: number;
|
|
3630
|
-
losses: number;
|
|
3631
|
-
WLRatio: number;
|
|
3632
|
-
playedGames: number;
|
|
3633
|
-
};
|
|
3634
|
-
'1v1': {
|
|
3635
|
-
division?: string;
|
|
3636
|
-
winstreak: number;
|
|
3637
|
-
bestWinstreak: number;
|
|
3638
|
-
kills: number;
|
|
3639
|
-
deaths: number;
|
|
3640
|
-
wins: number;
|
|
3641
|
-
losses: number;
|
|
3642
|
-
KDRatio: number;
|
|
3643
|
-
WLRatio: number;
|
|
3644
|
-
playedGames: number;
|
|
3645
|
-
};
|
|
3646
|
-
'2v2': {
|
|
3647
|
-
division?: string;
|
|
3648
|
-
winstreak: number;
|
|
3649
|
-
bestWinstreak: number;
|
|
3650
|
-
kills: number;
|
|
3651
|
-
deaths: number;
|
|
3652
|
-
wins: number;
|
|
3653
|
-
losses: number;
|
|
3654
|
-
KDRatio: number;
|
|
3655
|
-
WLRatio: number;
|
|
3656
|
-
playedGames: number;
|
|
3657
|
-
};
|
|
3658
|
-
'4v4': {
|
|
3659
|
-
division?: string;
|
|
3660
|
-
winstreak: number;
|
|
3661
|
-
bestWinstreak: number;
|
|
3662
|
-
kills: number;
|
|
3663
|
-
deaths: number;
|
|
3664
|
-
wins: number;
|
|
3665
|
-
losses: number;
|
|
3666
|
-
KDRatio: number;
|
|
3667
|
-
WLRatio: number;
|
|
3668
|
-
playedGames: number;
|
|
3669
|
-
};
|
|
3670
|
-
meetup: {
|
|
3671
|
-
division?: string;
|
|
3672
|
-
winstreak: number;
|
|
3673
|
-
bestWinstreak: number;
|
|
3674
|
-
kills: number;
|
|
3675
|
-
deaths: number;
|
|
3676
|
-
wins: number;
|
|
3677
|
-
losses: number;
|
|
3678
|
-
KDRatio: number;
|
|
3679
|
-
WLRatio: number;
|
|
3680
|
-
playedGames: number;
|
|
3681
|
-
};
|
|
3682
|
-
};
|
|
3683
|
-
op: {
|
|
3684
|
-
overall: {
|
|
3685
|
-
division?: string;
|
|
3686
|
-
winstreak: number;
|
|
3687
|
-
bestWinstreak: number;
|
|
3688
|
-
kills: number;
|
|
3689
|
-
deaths: number;
|
|
3690
|
-
KDRatio: number;
|
|
3691
|
-
wins: number;
|
|
3692
|
-
losses: number;
|
|
3693
|
-
WLRatio: number;
|
|
3694
|
-
playedGames: number;
|
|
3695
|
-
};
|
|
3696
|
-
'1v1': {
|
|
3697
|
-
division?: string;
|
|
3698
|
-
winstreak: number;
|
|
3699
|
-
bestWinstreak: number;
|
|
3700
|
-
kills: number;
|
|
3701
|
-
deaths: number;
|
|
3702
|
-
wins: number;
|
|
3703
|
-
losses: number;
|
|
3704
|
-
KDRatio: number;
|
|
3705
|
-
WLRatio: number;
|
|
3706
|
-
playedGames: number;
|
|
3707
|
-
};
|
|
3708
|
-
'2v2': {
|
|
3709
|
-
division?: string;
|
|
3710
|
-
winstreak: number;
|
|
3711
|
-
bestWinstreak: number;
|
|
3712
|
-
kills: number;
|
|
3713
|
-
deaths: number;
|
|
3714
|
-
wins: number;
|
|
3715
|
-
losses: number;
|
|
3716
|
-
KDRatio: number;
|
|
3717
|
-
WLRatio: number;
|
|
3718
|
-
playedGames: number;
|
|
3719
|
-
};
|
|
3720
|
-
};
|
|
3721
|
-
skywars: {
|
|
3722
|
-
overall: {
|
|
3723
|
-
division?: string;
|
|
3724
|
-
winstreak: number;
|
|
3725
|
-
bestWinstreak: number;
|
|
3726
|
-
kills: number;
|
|
3727
|
-
deaths: number;
|
|
3728
|
-
KDRatio: number;
|
|
3729
|
-
wins: number;
|
|
3730
|
-
losses: number;
|
|
3731
|
-
WLRatio: number;
|
|
3732
|
-
playedGames: number;
|
|
3733
|
-
};
|
|
3734
|
-
'1v1': {
|
|
3735
|
-
division?: string;
|
|
3736
|
-
winstreak: number;
|
|
3737
|
-
bestWinstreak: number;
|
|
3738
|
-
kills: number;
|
|
3739
|
-
deaths: number;
|
|
3740
|
-
wins: number;
|
|
3741
|
-
losses: number;
|
|
3742
|
-
KDRatio: number;
|
|
3743
|
-
WLRatio: number;
|
|
3744
|
-
playedGames: number;
|
|
3745
|
-
};
|
|
3746
|
-
'2v2': {
|
|
3747
|
-
division?: string;
|
|
3748
|
-
winstreak: number;
|
|
3749
|
-
bestWinstreak: number;
|
|
3750
|
-
kills: number;
|
|
3751
|
-
deaths: number;
|
|
3752
|
-
wins: number;
|
|
3753
|
-
losses: number;
|
|
3754
|
-
KDRatio: number;
|
|
3755
|
-
WLRatio: number;
|
|
3756
|
-
playedGames: number;
|
|
3757
|
-
};
|
|
3758
|
-
};
|
|
3759
|
-
sumo: {
|
|
3760
|
-
division?: string;
|
|
3761
|
-
winstreak: number;
|
|
3762
|
-
bestWinstreak: number;
|
|
3763
|
-
kills: number;
|
|
3764
|
-
deaths: number;
|
|
3765
|
-
wins: number;
|
|
3766
|
-
losses: number;
|
|
3767
|
-
KDRatio: number;
|
|
3768
|
-
WLRatio: number;
|
|
3769
|
-
playedGames: number;
|
|
3770
|
-
};
|
|
3771
|
-
classic: {
|
|
3772
|
-
division?: string;
|
|
3773
|
-
winstreak: number;
|
|
3774
|
-
bestWinstreak: number;
|
|
3775
|
-
kills: number;
|
|
3776
|
-
deaths: number;
|
|
3777
|
-
wins: number;
|
|
3778
|
-
losses: number;
|
|
3779
|
-
KDRatio: number;
|
|
3780
|
-
WLRatio: number;
|
|
3781
|
-
playedGames: number;
|
|
3782
|
-
};
|
|
3783
|
-
combo: {
|
|
3784
|
-
division?: string;
|
|
3785
|
-
winstreak: number;
|
|
3786
|
-
bestWinstreak: number;
|
|
3787
|
-
kills: number;
|
|
3788
|
-
deaths: number;
|
|
3789
|
-
wins: number;
|
|
3790
|
-
losses: number;
|
|
3791
|
-
KDRatio: number;
|
|
3792
|
-
WLRatio: number;
|
|
3793
|
-
playedGames: number;
|
|
3794
|
-
};
|
|
3795
|
-
bridge: {
|
|
3796
|
-
overall: {
|
|
3797
|
-
division?: string;
|
|
3798
|
-
winstreak: number;
|
|
3799
|
-
bestWinstreak: number;
|
|
3800
|
-
kills: number;
|
|
3801
|
-
deaths: number;
|
|
3802
|
-
KDRatio: number;
|
|
3803
|
-
wins: number;
|
|
3804
|
-
losses: number;
|
|
3805
|
-
WLRatio: number;
|
|
3806
|
-
playedGames: number;
|
|
3807
|
-
goals: number;
|
|
3808
|
-
};
|
|
3809
|
-
'1v1': {
|
|
3810
|
-
division?: string;
|
|
3811
|
-
winstreak: number;
|
|
3812
|
-
bestWinstreak: number;
|
|
3813
|
-
kills: number;
|
|
3814
|
-
deaths: number;
|
|
3815
|
-
wins: number;
|
|
3816
|
-
losses: number;
|
|
3817
|
-
KDRatio: number;
|
|
3818
|
-
WLRatio: number;
|
|
3819
|
-
playedGames: number;
|
|
3820
|
-
goals: number;
|
|
3821
|
-
};
|
|
3822
|
-
'2v2': {
|
|
3823
|
-
division?: string;
|
|
3824
|
-
winstreak: number;
|
|
3825
|
-
bestWinstreak: number;
|
|
3826
|
-
kills: number;
|
|
3827
|
-
deaths: number;
|
|
3828
|
-
wins: number;
|
|
3829
|
-
losses: number;
|
|
3830
|
-
KDRatio: number;
|
|
3831
|
-
WLRatio: number;
|
|
3832
|
-
playedGames: number;
|
|
3833
|
-
goals: number;
|
|
3834
|
-
};
|
|
3835
|
-
'3v3': {
|
|
3836
|
-
division?: string;
|
|
3837
|
-
winstreak: number;
|
|
3838
|
-
bestWinstreak: number;
|
|
3839
|
-
kills: number;
|
|
3840
|
-
deaths: number;
|
|
3841
|
-
KDRatio: number;
|
|
3842
|
-
wins: number;
|
|
3843
|
-
losses: number;
|
|
3844
|
-
WLRatio: number;
|
|
3845
|
-
playedGames: number;
|
|
3846
|
-
goals: number;
|
|
3847
|
-
};
|
|
3848
|
-
'4v4': {
|
|
3849
|
-
division?: string;
|
|
3850
|
-
winstreak: number;
|
|
3851
|
-
bestWinstreak: number;
|
|
3852
|
-
kills: number;
|
|
3853
|
-
deaths: number;
|
|
3854
|
-
wins: number;
|
|
3855
|
-
losses: number;
|
|
3856
|
-
KDRatio: number;
|
|
3857
|
-
WLRatio: number;
|
|
3858
|
-
playedGames: number;
|
|
3859
|
-
goals: number;
|
|
3860
|
-
};
|
|
3861
|
-
'2v2v2v2': {
|
|
3862
|
-
division?: string;
|
|
3863
|
-
winstreak: number;
|
|
3864
|
-
bestWinstreak: number;
|
|
3865
|
-
kills: number;
|
|
3866
|
-
deaths: number;
|
|
3867
|
-
wins: number;
|
|
3868
|
-
losses: number;
|
|
3869
|
-
KDRatio: number;
|
|
3870
|
-
WLRatio: number;
|
|
3871
|
-
playedGames: number;
|
|
3872
|
-
goals: number;
|
|
3873
|
-
};
|
|
3874
|
-
'3v3v3v3': {
|
|
3875
|
-
division?: string;
|
|
3876
|
-
winstreak: number;
|
|
3877
|
-
bestWinstreak: number;
|
|
3878
|
-
kills: number;
|
|
3879
|
-
deaths: number;
|
|
3880
|
-
wins: number;
|
|
3881
|
-
losses: number;
|
|
3882
|
-
KDRatio: number;
|
|
3883
|
-
WLRatio: number;
|
|
3884
|
-
playedGames: number;
|
|
3885
|
-
goals: number;
|
|
3886
|
-
};
|
|
3887
|
-
ctf: {
|
|
3888
|
-
division?: string;
|
|
3889
|
-
kills: number;
|
|
3890
|
-
deaths: number;
|
|
3891
|
-
KDRatio: number;
|
|
3892
|
-
wins: number;
|
|
3893
|
-
losses: number;
|
|
3894
|
-
WLRatio: number;
|
|
3895
|
-
playedGames: number;
|
|
3896
|
-
goals: number;
|
|
3897
|
-
};
|
|
3898
|
-
};
|
|
3899
|
-
megawalls: {
|
|
3900
|
-
division?: string;
|
|
3901
|
-
winstreak: number;
|
|
3902
|
-
bestWinstreak: number;
|
|
3903
|
-
kills: number;
|
|
3904
|
-
deaths: number;
|
|
3905
|
-
wins: number;
|
|
3906
|
-
losses: number;
|
|
3907
|
-
KDRatio: number;
|
|
3908
|
-
WLRatio: number;
|
|
3909
|
-
playedGames: number;
|
|
3910
|
-
};
|
|
3911
|
-
blitz: {
|
|
3912
|
-
division?: string;
|
|
3913
|
-
winstreak: number;
|
|
3914
|
-
bestWinstreak: number;
|
|
3915
|
-
kills: number;
|
|
3916
|
-
deaths: number;
|
|
3917
|
-
wins: number;
|
|
3918
|
-
losses: number;
|
|
3919
|
-
KDRatio: number;
|
|
3920
|
-
WLRatio: number;
|
|
3921
|
-
playedGames: number;
|
|
3922
|
-
};
|
|
3923
|
-
nodebuff: {
|
|
3924
|
-
division?: string;
|
|
3925
|
-
winstreak: number;
|
|
3926
|
-
bestWinstreak: number;
|
|
3927
|
-
kills: number;
|
|
3928
|
-
deaths: number;
|
|
3929
|
-
wins: number;
|
|
3930
|
-
losses: number;
|
|
3931
|
-
KDRatio: number;
|
|
3932
|
-
WLRatio: number;
|
|
3933
|
-
playedGames: number;
|
|
3934
|
-
};
|
|
3935
|
-
bow: {
|
|
3936
|
-
division?: string;
|
|
3937
|
-
winstreak: number;
|
|
3938
|
-
bestWinstreak: number;
|
|
3939
|
-
kills: number;
|
|
3940
|
-
deaths: number;
|
|
3941
|
-
wins: number;
|
|
3942
|
-
losses: number;
|
|
3943
|
-
KDRatio: number;
|
|
3944
|
-
WLRatio: number;
|
|
3945
|
-
playedGames: number;
|
|
3946
|
-
};
|
|
3986
|
+
ping: number;
|
|
3987
|
+
blocksPlaced: number;
|
|
3988
|
+
swings: number;
|
|
3989
|
+
hits: number;
|
|
3990
|
+
meleeAccuracy: number;
|
|
3991
|
+
bowShots: number;
|
|
3992
|
+
bowHits: number;
|
|
3993
|
+
bowAccuracy: number;
|
|
3994
|
+
healthRegenerated: number;
|
|
3995
|
+
goldenApplesEatan: number;
|
|
3996
|
+
uhc: DuelsUHC;
|
|
3997
|
+
skywars: DuelsSkyWars;
|
|
3998
|
+
megawalls: DuelsMegaWalls;
|
|
3999
|
+
blitz: DuelsGamemode;
|
|
4000
|
+
op: DuelsOP;
|
|
4001
|
+
classic: DuelsGamemode;
|
|
4002
|
+
bow: DuelsGamemode;
|
|
4003
|
+
noDebuff: DuelsGamemode;
|
|
4004
|
+
combo: DuelsGamemode;
|
|
4005
|
+
bowSpleef: DuelsGamemode;
|
|
4006
|
+
sumo: DuelsGamemode;
|
|
4007
|
+
bridge: DuelsBridge;
|
|
4008
|
+
parkour: DuelsGamemode;
|
|
4009
|
+
arena: DuelsGamemode;
|
|
3947
4010
|
}
|
|
3948
4011
|
class BuildBattle {
|
|
3949
4012
|
constructor(data: Record<string, unknown>);
|
|
3950
4013
|
score: number;
|
|
3951
|
-
|
|
4014
|
+
totalWins: number;
|
|
4015
|
+
games: number;
|
|
4016
|
+
WLRatio: number;
|
|
4017
|
+
superVotes: number;
|
|
3952
4018
|
coins: number;
|
|
3953
4019
|
totalVotes: number;
|
|
3954
|
-
totalWins: number;
|
|
3955
4020
|
wins: {
|
|
3956
4021
|
solo: number;
|
|
3957
|
-
|
|
4022
|
+
teams: number;
|
|
3958
4023
|
pro: number;
|
|
3959
4024
|
gtb: number;
|
|
3960
4025
|
};
|
|
@@ -3969,9 +4034,55 @@ declare module 'hypixel-api-reborn' {
|
|
|
3969
4034
|
endedAt?: Date;
|
|
3970
4035
|
endedTimestamp?: number;
|
|
3971
4036
|
}
|
|
4037
|
+
class MegaWallsModeStats {
|
|
4038
|
+
constructor(data: Record<string, unknown>, mode: string, kit?: string);
|
|
4039
|
+
kills: number;
|
|
4040
|
+
assists: number;
|
|
4041
|
+
deaths: number;
|
|
4042
|
+
KDRatio: number;
|
|
4043
|
+
wins: number;
|
|
4044
|
+
losses: number;
|
|
4045
|
+
WLRatio: number;
|
|
4046
|
+
finalKills: number;
|
|
4047
|
+
finalAssists: number;
|
|
4048
|
+
finalDeaths: number;
|
|
4049
|
+
finalKDRatio: number;
|
|
4050
|
+
playedGames: number;
|
|
4051
|
+
witherDamage: number;
|
|
4052
|
+
defenderKills: number;
|
|
4053
|
+
walked: number;
|
|
4054
|
+
blocksPlaced: number;
|
|
4055
|
+
blocksBroken: number;
|
|
4056
|
+
meleeKills: number;
|
|
4057
|
+
damageDealt: number;
|
|
4058
|
+
}
|
|
4059
|
+
class MegaWallsKitStats {
|
|
4060
|
+
constructor(data: Record<string, unknown>, kit: string);
|
|
4061
|
+
kills: number;
|
|
4062
|
+
assists: number;
|
|
4063
|
+
deaths: number;
|
|
4064
|
+
KDRatio: number;
|
|
4065
|
+
wins: number;
|
|
4066
|
+
losses: number;
|
|
4067
|
+
WLRatio: number;
|
|
4068
|
+
finalKills: number;
|
|
4069
|
+
finalAssists: number;
|
|
4070
|
+
finalDeaths: number;
|
|
4071
|
+
finalKDRatio: number;
|
|
4072
|
+
playedGames: number;
|
|
4073
|
+
witherDamage: number;
|
|
4074
|
+
defenderKills: number;
|
|
4075
|
+
walked: number;
|
|
4076
|
+
blocksPlaced: number;
|
|
4077
|
+
blocksBroken: number;
|
|
4078
|
+
meleeKills: number;
|
|
4079
|
+
damageDealt: number;
|
|
4080
|
+
faceOff: MegaWallsModeStats;
|
|
4081
|
+
casualBrawl: MegaWallsModeStats;
|
|
4082
|
+
}
|
|
3972
4083
|
class MegaWalls {
|
|
3973
4084
|
constructor(data: Record<string, unknown>);
|
|
3974
|
-
selectedClass: string;
|
|
4085
|
+
selectedClass: string | null;
|
|
3975
4086
|
coins: number;
|
|
3976
4087
|
kills: number;
|
|
3977
4088
|
assists: number;
|
|
@@ -3987,26 +4098,39 @@ declare module 'hypixel-api-reborn' {
|
|
|
3987
4098
|
playedGames: number;
|
|
3988
4099
|
witherDamage: number;
|
|
3989
4100
|
defenderKills: number;
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4101
|
+
walked: number;
|
|
4102
|
+
blocksPlaced: number;
|
|
4103
|
+
blocksBroken: number;
|
|
4104
|
+
meleeKills: number;
|
|
4105
|
+
damageDealt: number;
|
|
4106
|
+
faceOff: MegaWallsModeStats;
|
|
4107
|
+
casualBrawl: MegaWallsModeStats;
|
|
4108
|
+
cow: MegaWallsKitStats;
|
|
4109
|
+
hunter: MegaWallsKitStats;
|
|
4110
|
+
shark: MegaWallsKitStats;
|
|
4111
|
+
arcanist: MegaWallsKitStats;
|
|
4112
|
+
deadlord: MegaWallsKitStats;
|
|
4113
|
+
golem: MegaWallsKitStats;
|
|
4114
|
+
herobrine: MegaWallsKitStats;
|
|
4115
|
+
pigman: MegaWallsKitStats;
|
|
4116
|
+
zombie: MegaWallsKitStats;
|
|
4117
|
+
blaze: MegaWallsKitStats;
|
|
4118
|
+
enderman: MegaWallsKitStats;
|
|
4119
|
+
shaman: MegaWallsKitStats;
|
|
4120
|
+
squid: MegaWallsKitStats;
|
|
4121
|
+
creeper: MegaWallsKitStats;
|
|
4122
|
+
pirate: MegaWallsKitStats;
|
|
4123
|
+
sheep: MegaWallsKitStats;
|
|
4124
|
+
skeleton: MegaWallsKitStats;
|
|
4125
|
+
spider: MegaWallsKitStats;
|
|
4126
|
+
werewolf: MegaWallsKitStats;
|
|
4127
|
+
angel: MegaWallsKitStats;
|
|
4128
|
+
assassin: MegaWallsKitStats;
|
|
4129
|
+
automaton: MegaWallsKitStats;
|
|
4130
|
+
moleman: MegaWallsKitStats;
|
|
4131
|
+
phoenix: MegaWallsKitStats;
|
|
4132
|
+
renegade: MegaWallsKitStats;
|
|
4133
|
+
snowman: MegaWallsKitStats;
|
|
4010
4134
|
}
|
|
4011
4135
|
class APIStatus {
|
|
4012
4136
|
constructor(data: Record<string, unknown>);
|
|
@@ -4331,4 +4455,15 @@ declare module 'hypixel-api-reborn' {
|
|
|
4331
4455
|
requiredAmount?: number;
|
|
4332
4456
|
toString(): string;
|
|
4333
4457
|
}
|
|
4458
|
+
class House {
|
|
4459
|
+
constructor(data: Record<string, unknown>);
|
|
4460
|
+
name: string;
|
|
4461
|
+
uuid: string;
|
|
4462
|
+
owner: string;
|
|
4463
|
+
createdAtTimestamp: number;
|
|
4464
|
+
createdAt: Date;
|
|
4465
|
+
players: number;
|
|
4466
|
+
cookies: number;
|
|
4467
|
+
toString(): string;
|
|
4468
|
+
}
|
|
4334
4469
|
}
|