Skip to content

Commit

Permalink
updated readme to prvide info on quest data
Browse files Browse the repository at this point in the history
  • Loading branch information
CrimsonNynja committed May 3, 2021
1 parent ec1678e commit f842d49
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
## Monster Hunter DB

This repo contains a database of monsters from MH3U, MH4U, MHGU, MHST and MHW (plus Iceborne), and MH Rise.
This repo contains a database of monsters from MH3U, MH4U, MHGU, MHST and MHW (plus Iceborne), and MH Rise. It also contains all quests from MH rise (more to come in the future)

The data is provided in both a `.json` and `.ndjson` file, with the data sorted alphabetically on the monsters name.

In its current state, it contains info on each monster from the games, with the following information (if it exists for the given monster)

All icons are provided in the 'icons' folder that the DB references.

```json
```js
{
"_id": {
"$oid": "" // the id of the monster
Expand Down Expand Up @@ -38,3 +38,25 @@ All icons are provided in the 'icons' folder that the DB references.
]
},
```

Quest data structure

```js
{
"_id": {
"$oid": "" // the id of the quest
},
"name": "", //the quest title
"client": "", // the quest client
"description": "", // the information on the quest
"map": "", //which map the quest is located in
"isKey": true, // if the quest is needed to unlock the next HR
"questType": "", // one of Village|Hub|Arena|Event
"game": "", // which game the quest is from
"difficulty": "", // the difficult of the quest 1, 7, G1 etc.
"objective": "", // the key objective of the quest
"targets": [
"" // any key monsters which need to be dealt with to finish the quest
]
},
```

0 comments on commit f842d49

Please sign in to comment.