diff options
author | mat <github@matdoes.dev> | 2022-04-20 18:04:47 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-04-20 18:04:47 -0500 |
commit | 5712e10eec2c9fa881bdf19295808404c56f7d33 (patch) | |
tree | 8c568ad5c8be3ec783f5dae6e3c8c7898da11b9e /src | |
parent | 2da11d5d59d2794a90c0f8bdb2dc2dff27cb3693 (diff) | |
download | skyblock-api-5712e10eec2c9fa881bdf19295808404c56f7d33.tar.gz skyblock-api-5712e10eec2c9fa881bdf19295808404c56f7d33.tar.bz2 skyblock-api-5712e10eec2c9fa881bdf19295808404c56f7d33.zip |
add inferno demonlord
Diffstat (limited to 'src')
-rw-r--r-- | src/cleaners/skyblock/slayers.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cleaners/skyblock/slayers.ts b/src/cleaners/skyblock/slayers.ts index 6516bbf..94c23f0 100644 --- a/src/cleaners/skyblock/slayers.ts +++ b/src/cleaners/skyblock/slayers.ts @@ -5,7 +5,8 @@ const SLAYER_NAMES = { spider: 'tarantula', zombie: 'revenant', wolf: 'sven', - enderman: 'voidgloom_seraph' + enderman: 'voidgloom_seraph', + blaze: 'inferno_demonlord' } as const // todo: put this in skyblock-constants since it can be determined from other people's profiles @@ -13,7 +14,8 @@ export const SLAYER_TIERS: Record<keyof typeof SLAYER_NAMES, number> = { spider: 4, zombie: 5, enderman: 4, - wolf: 4 + wolf: 4, + blaze: 4 } type SlayerName = (typeof SLAYER_NAMES)[keyof typeof SLAYER_NAMES] |