mirror of
https://github.com/maxswa/osrs-json-hiscores.git
synced 2025-10-15 10:19:04 +00:00
Add Yama, the Master of Pacts
This commit is contained in:
@@ -179,6 +179,7 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
|
|||||||
| Vetion | `vetion` |
|
| Vetion | `vetion` |
|
||||||
| Vorkath | `vorkath` |
|
| Vorkath | `vorkath` |
|
||||||
| Wintertodt | `wintertodt` |
|
| Wintertodt | `wintertodt` |
|
||||||
|
| Yama | `yama` |
|
||||||
| Zalcano | `zalcano` |
|
| Zalcano | `zalcano` |
|
||||||
| Zulrah | `zulrah` |
|
| Zulrah | `zulrah` |
|
||||||
|
|
||||||
|
@@ -104,5 +104,6 @@
|
|||||||
97368,51
|
97368,51
|
||||||
15591,2780
|
15591,2780
|
||||||
1000405,67
|
1000405,67
|
||||||
|
19722,173
|
||||||
213696,25
|
213696,25
|
||||||
240082,340
|
240082,340
|
Can't render this file because it has a wrong number of fields in line 25.
|
@@ -664,12 +664,18 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 82,
|
"id": 82,
|
||||||
|
"name": "Yama",
|
||||||
|
"rank": 19722,
|
||||||
|
"score": 173
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 83,
|
||||||
"name": "Zalcano",
|
"name": "Zalcano",
|
||||||
"rank": 213696,
|
"rank": 213696,
|
||||||
"score": 25
|
"score": 25
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 83,
|
"id": 84,
|
||||||
"name": "Zulrah",
|
"name": "Zulrah",
|
||||||
"rank": 240082,
|
"rank": 240082,
|
||||||
"score": 340
|
"score": 340
|
||||||
|
@@ -178,6 +178,7 @@ test('Parse CSV to json', () => {
|
|||||||
1940,272
|
1940,272
|
||||||
8623,1340
|
8623,1340
|
||||||
605,1694
|
605,1694
|
||||||
|
15233,245
|
||||||
-1,-1
|
-1,-1
|
||||||
3867,4583`;
|
3867,4583`;
|
||||||
|
|
||||||
@@ -295,6 +296,7 @@ test('Parse CSV to json', () => {
|
|||||||
vetion: { rank: 1940, score: 272 },
|
vetion: { rank: 1940, score: 272 },
|
||||||
vorkath: { rank: 8623, score: 1340 },
|
vorkath: { rank: 8623, score: 1340 },
|
||||||
wintertodt: { rank: 605, score: 1694 },
|
wintertodt: { rank: 605, score: 1694 },
|
||||||
|
yama: { rank: 15233, score: 245 },
|
||||||
zalcano: { rank: -1, score: -1 },
|
zalcano: { rank: -1, score: -1 },
|
||||||
zulrah: { rank: 3867, score: 4583 }
|
zulrah: { rank: 3867, score: 4583 }
|
||||||
}
|
}
|
||||||
|
@@ -130,6 +130,7 @@ export type Boss =
|
|||||||
| 'vetion'
|
| 'vetion'
|
||||||
| 'vorkath'
|
| 'vorkath'
|
||||||
| 'wintertodt'
|
| 'wintertodt'
|
||||||
|
| 'yama'
|
||||||
| 'zalcano'
|
| 'zalcano'
|
||||||
| 'zulrah';
|
| 'zulrah';
|
||||||
|
|
||||||
|
@@ -137,6 +137,7 @@ export const BOSSES: Boss[] = [
|
|||||||
'vetion',
|
'vetion',
|
||||||
'vorkath',
|
'vorkath',
|
||||||
'wintertodt',
|
'wintertodt',
|
||||||
|
'yama',
|
||||||
'zalcano',
|
'zalcano',
|
||||||
'zulrah'
|
'zulrah'
|
||||||
];
|
];
|
||||||
@@ -231,6 +232,7 @@ export const FORMATTED_BOSS_NAMES: FormattedBossNames = {
|
|||||||
vetion: "Vet'ion",
|
vetion: "Vet'ion",
|
||||||
vorkath: 'Vorkath',
|
vorkath: 'Vorkath',
|
||||||
wintertodt: 'Wintertodt',
|
wintertodt: 'Wintertodt',
|
||||||
|
yama: 'Yama',
|
||||||
zalcano: 'Zalcano',
|
zalcano: 'Zalcano',
|
||||||
zulrah: 'Zulrah'
|
zulrah: 'Zulrah'
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user