Relic Hunter
Get Relic Hunter location
Current Relic Hunter location data is sourced from MHCT.
Properties
- Name
id
TypestringDescriptionThe environment ID.
- Name
name
TypestringDescriptionThe environment name.
- Name
article
TypestringDescriptionThe environment name with article.
- Name
image
TypestringDescriptionThe environment image.
- Name
headerImage
TypestringDescriptionThe environment header image.
- Name
region
TypestringDescriptionThe environment region.
- Name
order
TypeintegerDescriptionThe environment order.
- Name
title
TypestringDescriptionThe title needed to be able to access the environment.
Request
GET
https://api.mouse.rip/relic-hunterconst location = await fetch('https://api.mouse.rip/relic-hunter')
console.log(location)
Response
{
"id": "meadow",
"name": "Meadow",
"article": "the Meadow",
"image": "https://www.mousehuntgame.com/images/environments/a441eb078698da69ef2765983f4b5912.jpg?cv=2",
"headerImage": "https://www.mousehuntgame.com/images/environments/6ef3ffe2f90a79250807b46105e77b68.jpg?cv=2",
"region": "gnawnia",
"order": 10,
"title": "novice"
}
Get Relic Hunter Hints
Properties
- Name
location
TypestringDescriptionThe location ID.
- Name
hints
TypearrayDescriptionThe array of hints for the location.
Request
GET
https://api.mouse.rip/relic-hunter-hintsconst relicHunterHints = await fetch('https://api.mouse.rip/relic-hunter-hints')
console.log(relicHunterHints)
Response
{
"acolyte_realm": [
"Standing on the other side of a green and purple portal.",
"Inside an elaborate one-way trap designed by Plankrun.",
"Outside a smoky purple tower."
],
"balacks_cove": [
"Roaming amongst the most powerful of Lich mice.",
"Lurking in a damp and darkened grotto."
],
...
}