Nookipedia / nookipedia-api

Nookipedia's custom API for querying data from the Animal Crossing video game series.
https://api.nookipedia.com/
MIT License
40 stars 12 forks source link

Changes to `/nh/art` object #74

Closed Micalobia closed 1 year ago

Micalobia commented 2 years ago

Something I've been mulling over is grouping constructs related to the real vs. the fake artwork into there own objects, something like this:

"has_fake": true,
"real_info": {
    "image_url": "",
    "texture_url": "",
    "description": "",
    "themes": []
},
"fake_info": {
    "image_url": "", // fake_image_url
    "texture_url": "", // fake_texture_url
    "description": "", // authenticity
    "themes": [] // Would use fake_theme, maybe more in the future
}

where fake_info would be null when has_fake is false. This includes things added in #58, although I think they could be added separately, since it doesn't need to be versioned, and this change would be versioned to either 1.5.1 or 1.6.0