From f842d4957d1a53fdb6619a8cb285970ad9fd6f3c Mon Sep 17 00:00:00 2001 From: Hudson Cassidy Date: Mon, 3 May 2021 20:03:48 +1000 Subject: [PATCH] updated readme to prvide info on quest data --- README.md | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 931e10e..ced064b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## 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. @@ -8,7 +8,7 @@ In its current state, it contains info on each monster from the games, with the All icons are provided in the 'icons' folder that the DB references. -```json +```js { "_id": { "$oid": "" // the id of the monster @@ -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 + ] +}, +```