diff options
Diffstat (limited to 'src/cleaners')
-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] |