From 461594b144d5ff25f6009c0086c0566fe1adead6 Mon Sep 17 00:00:00 2001 From: euyuriadriel <60609385+xCONEx@users.noreply.github.com> Date: Wed, 23 Jul 2025 16:13:44 -0300 Subject: [PATCH 1/2] Update runescape.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit feat: adiciona suporte à skill necromancy --- src/configs/runescape.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/configs/runescape.ts b/src/configs/runescape.ts index edffe91..c6a3c11 100644 --- a/src/configs/runescape.ts +++ b/src/configs/runescape.ts @@ -317,6 +317,7 @@ export const hiscores = { "divination", "invention", "archaeology", + "necromancy", ] as const, } export const miscellaneous = { From 1af38a17cdbb1713efe356100e268d66967c1720 Mon Sep 17 00:00:00 2001 From: euyuriadriel <60609385+xCONEx@users.noreply.github.com> Date: Wed, 23 Jul 2025 16:13:58 -0300 Subject: [PATCH 2/2] Update Jagex.ts --- src/utils/Jagex.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/Jagex.ts b/src/utils/Jagex.ts index 4179287..32ee28e 100644 --- a/src/utils/Jagex.ts +++ b/src/utils/Jagex.ts @@ -35,6 +35,7 @@ const defaultSkillTree: Jagex.Hiscores.PlayerSkills = { divination: { rank: 0, level: 1, experience: 0 }, invention: { rank: 0, level: 1, experience: 0 }, archaeology: { rank: 0, level: 1, experience: 0 }, + necromancy: { rank: 0, level: 1, experience: 0 }, } const separateIntoLines = (jagexPlayer: string): string[] => { return jagexPlayer.split("\n")