This is a plan to make an Elder Scrolls API which will be used solely for information. I'm planning to also partner with the UESP team to publish the API to the Autocode Standard Library once I have a bit more info. As of now, it's not much, but I collected marketing information for each of the games. Over the next couple days, I may continue expanding. These expansions will include item data, entity data, quest data, lore, and more. Skyrim information Endpoint Only
module.exports = async () => {
return {
titleShort: 'Skyrim',
titleLong: 'The Elder Scrolls V: Skyrim',
description:
'The next chapter in the highly anticipated Elder Scrolls saga arrives from the makers of the 2006 and 2008 Games of the Year, Bethesda Game Studios. Skyrim reimagines and revolutionizes the open-world fantasy epic, bringing to life a complete virtual world open for you to explore any way you choose.\nSkyrim® brings to life a complete virtual world for you to explore any way you choose, including all-new features like motion controls, plus outfits and gear from compatible The Legend of Zelda™ amiibo. Take down enemies with the Master Sword, protect yourself with the Hylian Shield or look heroic in the Champion’s Tunic. The legendary freedom of choice and adventure of Skyrim is realized like never before. Dragons, long lost to the passages of the Elder Scrolls, have returned and the future of Skyrim hangs in the balance. As Dragonborn, the prophesized hero born with the power of The Voice, you are the only one who can stand amongst them.',
series: {
name: 'The Elder Scrolls',
installment: '5',
},
dlc: [
{
name: 'Dawnguard',
},
{
name: 'Hearthfire',
},
{
name: 'Dragonborn',
},
],
platforms: ['Windows PC', 'Playstation 3', 'Xbox 360', 'Nintendo Switch'],
versions: [
{
titleShort: 'Skyrim Special Edition',
titleLong: 'The Elder Scrolls V: Skyrim Special Edition',
includesDLC: ['Dawnguard', 'Hearthfire', 'Dragonborn'],
platforms: [
'Windows PC',
'Playstation 4',
'Playstation 5',
'Xbox One',
'Xbox Series',
],
},
{
titleShort: 'Skyrim Legendary Edition',
titleLong: 'The Elder Scrolls V: Skyrim Legendary Edition',
includesDLC: ['Dawnguard', 'Hearthfire', 'Dragonborn'],
platforms: ['Windows PC', 'Playstation 3', 'Xbox 360'],
},
{
titleShort: 'Skyrim VR',
titleLong: 'The Elder Scrolls V: Skyrim VR',
includesDLC: ['Dawnguard', 'Hearthfire', 'Dragonborn'],
platforms: ['Windows PC', 'Playstation 3', 'Xbox 360'],
},
{
titleShort: 'Skyrim Anniversary Edition',
titleLong: 'The Elder Scrolls V: Skyrim Anniversary Edition',
includesDLC: [
'Dawnguard',
'Hearthfire',
'Dragonborn',
'Creation Club Content',
],
platforms: [
'Windows PC',
'PlayStation 4',
'PlayStation 5',
'Xbox One',
'Xbox Series',
],
},
],
};
};