summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-09-01 21:40:11 +0200
committerDaniel Weipert <code@drogueronin.de>2023-09-01 21:40:11 +0200
commit6b3a8aef783368d0ed9a2c104eea3ff5cf9984da (patch)
tree7da1f4a6ad2bc0d549579678900eaf9c9a3f572f /db
parent94cf76f8968cf81a06d70fe329b5edf4ec07f94f (diff)
story as json in db
Diffstat (limited to 'db')
-rw-r--r--db/story/battle-rival-one.json19
-rw-r--r--db/story/introduction.json46
-rw-r--r--db/story/select-starter-monster.json35
3 files changed, 100 insertions, 0 deletions
diff --git a/db/story/battle-rival-one.json b/db/story/battle-rival-one.json
new file mode 100644
index 0000000..499b01d
--- /dev/null
+++ b/db/story/battle-rival-one.json
@@ -0,0 +1,19 @@
+{
+ "characters": {
+ "rival": {
+ "slug": "spyder_billie",
+ "text": [
+ "spyder_papertown_firstfight",
+ "spyder_papertown_firstfight_win",
+ "spyder_papertown_firstfight_lose",
+ "spyder_papertown_firstfight_after"
+ ],
+ "monsters": [
+ {
+ "slug": "RIVAL",
+ "level": 5
+ }
+ ]
+ }
+ }
+}
diff --git a/db/story/introduction.json b/db/story/introduction.json
new file mode 100644
index 0000000..7fa2ea3
--- /dev/null
+++ b/db/story/introduction.json
@@ -0,0 +1,46 @@
+{
+ "characters": {
+ "ceo": {
+ "slug": "omnichannel-ceo",
+ "text": [
+ "spyder_intro00",
+ "spyder_intro01"
+ ]
+ },
+
+ "shopKeeper": {
+ "slug": "tuxemart-keeper",
+ "text": [
+ "spyder_intro_shopkeeper1",
+ "spyder_intro_shopkeeper4"
+ ]
+ }
+ },
+
+ "monsters": [
+ {
+ "slug": "budaye",
+ "level": 5
+ },
+ {
+ "slug": "dollfin",
+ "level": 5
+ },
+ {
+ "slug": "grintot",
+ "level": 5
+ },
+ {
+ "slug": "ignibus",
+ "level": 5
+ },
+ {
+ "slug": "memnomnom",
+ "level": 5
+ }
+ ],
+
+ "money": 250,
+
+ "area": "paper-town"
+}
diff --git a/db/story/select-starter-monster.json b/db/story/select-starter-monster.json
new file mode 100644
index 0000000..017a284
--- /dev/null
+++ b/db/story/select-starter-monster.json
@@ -0,0 +1,35 @@
+{
+ "characters": {
+ "dante": {
+ "slug": "spyder_dante",
+ "text": [
+ "spyder_papertown_myfirstmon_notmet",
+ "spyder_papertown_myfirstmon1",
+ "spyder_papertown_myfirstmon2"
+ ]
+ }
+ },
+
+ "monsters": [
+ {
+ "slug": "tweesher",
+ "level": 5
+ },
+ {
+ "slug": "lambert",
+ "level": 5
+ },
+ {
+ "slug": "nut",
+ "level": 5
+ },
+ {
+ "slug": "agnite",
+ "level": 5
+ },
+ {
+ "slug": "rockitten",
+ "level": 5
+ }
+ ]
+}