Relic Hunter


Get Relic Hunter location

Current Relic Hunter location data is sourced from MHCT.

Properties

  • Name
    id
    Type
    string
    Description

    The environment ID.

  • Name
    name
    Type
    string
    Description

    The environment name.

  • Name
    article
    Type
    string
    Description

    The environment name with article.

  • Name
    image
    Type
    string
    Description

    The environment image.

  • Name
    headerImage
    Type
    string
    Description

    The environment header image.

  • Name
    region
    Type
    string
    Description

    The environment region.

  • Name
    order
    Type
    integer
    Description

    The environment order.

  • Name
    title
    Type
    string
    Description

    The title needed to be able to access the environment.

Request

GET
https://api.mouse.rip/relic-hunter
const 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
    Type
    string
    Description

    The location ID.

  • Name
    hints
    Type
    array
    Description

    The array of hints for the location.

Request

GET
https://api.mouse.rip/relic-hunter-hints
const 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."
  ],
  ...
}