summaryrefslogtreecommitdiff
path: root/db/areas
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-08-20 14:32:40 +0200
committerDaniel Weipert <code@drogueronin.de>2023-08-20 14:32:40 +0200
commitb227fc9c2ef361f8aa5ee2f24aa1ade6bc972a73 (patch)
tree8fdd7e980107bfd8fcd58ffe21f2299b37d310c8 /db/areas
parent2c7890e90e1aad371854cfe60ad63eaa88e64fec (diff)
area progress
Diffstat (limited to 'db/areas')
-rw-r--r--db/areas/paper-town.json20
-rw-r--r--db/areas/route1.json34
-rw-r--r--db/areas/route2.json14
-rw-r--r--db/areas/route3.json14
4 files changed, 82 insertions, 0 deletions
diff --git a/db/areas/paper-town.json b/db/areas/paper-town.json
new file mode 100644
index 0000000..b18e17e
--- /dev/null
+++ b/db/areas/paper-town.json
@@ -0,0 +1,20 @@
+{
+ "encounter_slug": "",
+
+ "encounters": [],
+
+ "requiredEncounters": 0,
+
+ "trainers": [
+ {
+ "name": "Rival",
+ "monsters": [],
+ "inventory": []
+ }
+ ],
+
+ "environment_slug": "interior",
+
+ "previousArea": "",
+ "nextArea": "route1"
+}
diff --git a/db/areas/route1.json b/db/areas/route1.json
new file mode 100644
index 0000000..54cc345
--- /dev/null
+++ b/db/areas/route1.json
@@ -0,0 +1,34 @@
+{
+ "encounter_slug": "route1",
+
+ "encounters": [],
+
+ "requiredEncounters": 10,
+
+ "trainers": [
+ {
+ "name": "Bruder Mikki",
+ "monsters": [
+ {
+ "slug": "memnomnom",
+ "level": 5
+ },
+ {
+ "slug": "jelillow",
+ "level": 5
+ }
+ ],
+ "inventory": [
+ {
+ "slug": "potion",
+ "quantity": 2
+ }
+ ]
+ }
+ ],
+
+ "environment_slug": "forest",
+
+ "previousArea": "paper-town",
+ "nextArea": "route2"
+}
diff --git a/db/areas/route2.json b/db/areas/route2.json
new file mode 100644
index 0000000..f4fc9bb
--- /dev/null
+++ b/db/areas/route2.json
@@ -0,0 +1,14 @@
+{
+ "encounter_slug": "route2",
+
+ "encounters": [],
+
+ "requiredEncounters": 10,
+
+ "trainers": [],
+
+ "environment_slug": "forest",
+
+ "previousArea": "route1",
+ "nextArea": "route3"
+}
diff --git a/db/areas/route3.json b/db/areas/route3.json
new file mode 100644
index 0000000..e9242fb
--- /dev/null
+++ b/db/areas/route3.json
@@ -0,0 +1,14 @@
+{
+ "encounter_slug": "route3",
+
+ "encounters": [],
+
+ "requiredEncounters": 10,
+
+ "trainers": [],
+
+ "environment_slug": "forest",
+
+ "previousArea": "route2",
+ "nextArea": "route4"
+}