From f2a6b14a8edf3bb486f5d795ec1c63409bcb1d1f Mon Sep 17 00:00:00 2001 From: Jack Holloway Date: Tue, 22 Nov 2022 17:06:34 +0000 Subject: [PATCH] Support SotDQ --- CHANGELOG.md | 4 ++++ munch/data/bookData.js | 9 +++++++++ package.json | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41f42d9..493f95e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.2.1 + +* SotDQ support (Dragonlance) + # 1.2.0 * Support adventure scene adjustments exported just for v10. Some scene data would not be altered correctly in v10 if the scene data had been exported in v10. diff --git a/munch/data/bookData.js b/munch/data/bookData.js index 67077f5..d33b237 100644 --- a/munch/data/bookData.js +++ b/munch/data/bookData.js @@ -821,6 +821,15 @@ const sources = [ avatarURL: "https://www.dndbeyond.com/avatars/26865/226/637921086362458107.jpeg", sourceURL: "sources/dosi", }, + { + id: 95, + name: "SotDQ", + description: "Dragonlance: Shadow of the Dragon Queen", + sourceCategoryId: 14, + isReleased: true, + avatarURL: "https://www.dndbeyond.com/avatars/27777/666/637951679601337771.jpeg", + sourceURL: "sources/sotdq", + }, ]; exports.sources = sources; diff --git a/package.json b/package.json index fc955b3..e7c0edd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ddb-adventure-muncher", - "version": "1.2.0", + "version": "1.2.1", "description": "D&D Beyond Adventure Muncher for Foundry Virtual Tabletop", "repository": "https://github.com/MrPrimate/ddb-adventure-muncher", "main": "main.js",