Skip to content

Instantly share code, notes, and snippets.

@vutran
Last active April 18, 2018 06:55
Show Gist options
  • Save vutran/5128ce242a111192c22841194e73a76f to your computer and use it in GitHub Desktop.
Save vutran/5128ce242a111192c22841194e73a76f to your computer and use it in GitHub Desktop.
monster_base.json
[
{
"monster_id": "aptonoth", // by english name
"name": {
"en": "Aptonoth",
"ja": "アプトノス"
},
},
{
"monster_id": "mernos",
"name": {
"en": "Mernos",
"ja": "メルノス"
},
},
]
// monster -> rewards
[
{
"monster_id": "aptonoth",
"rewards": [1, 2]
},
{
"monster_id": "mernos",
"rewards": [1, 2]
}
]
// rewards -> monster
[
{
"reward_id": 1,
"monsters": ["aptonoth", "mernos"]
},
{
"reward_id": 2,
"monsters": ["aptonoth", "mernos"]
}
]
[
{
"id": 1, // reward uid
"rewardType": "bodyCarve", // quest reward, carve, etc.
"rank": "lr",
"item": {
"en": "Raw Meat",
"ja": "",
},
"stack": 1,
"percentage": 100
}
{
"id": 2,
"rewardType": "bodyCarve",
"rank": "hr",
"item": {
"en": "Raw Meat",
"ja": "",
},
"stack": 1,
"percentage": 100
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment