diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-08-23 00:24:50 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-08-23 00:24:50 +0200 |
commit | 4dd1a344c6474087a3f8782dd54f5c7b4acc67ed (patch) | |
tree | 7a0229eb721d81c7579a7f5f721a503136c98095 /db/areas | |
parent | dbcd0118863ff3e7c5bee45041ccdb757eb2f366 (diff) |
area connections and town maps
Diffstat (limited to 'db/areas')
-rw-r--r-- | db/areas/city-park.json | 2 | ||||
-rw-r--r-- | db/areas/cotton-town.json | 14 | ||||
-rw-r--r-- | db/areas/dryads-grove.json | 15 | ||||
-rw-r--r-- | db/areas/leather-town.json | 14 | ||||
-rw-r--r-- | db/areas/paper-town.json | 2 | ||||
-rw-r--r-- | db/areas/route1.json | 2 | ||||
-rw-r--r-- | db/areas/route2.json | 2 | ||||
-rw-r--r-- | db/areas/route3.json | 2 |
8 files changed, 53 insertions, 0 deletions
diff --git a/db/areas/city-park.json b/db/areas/city-park.json index 113cf51..d0e5af3 100644 --- a/db/areas/city-park.json +++ b/db/areas/city-park.json @@ -1,4 +1,6 @@ { + "name": "City Park", + "encounter_slug": "citypark", "encounters": [], diff --git a/db/areas/cotton-town.json b/db/areas/cotton-town.json index dfd73e5..1f12f73 100644 --- a/db/areas/cotton-town.json +++ b/db/areas/cotton-town.json @@ -1,4 +1,6 @@ { + "name": "Cotton Town", + "encounter_slug": "", "encounters": [], @@ -9,6 +11,18 @@ "environment_slug": "interior", + "locations": { + "healing_center": { + "type": "healingCenter", + "price": 10 + }, + "cotton_scoop": { + "type": "shop", + "economy": "cotton_scoop", + "items": [] + } + }, + "events": { "dryads-grove": false }, diff --git a/db/areas/dryads-grove.json b/db/areas/dryads-grove.json new file mode 100644 index 0000000..a0a75cc --- /dev/null +++ b/db/areas/dryads-grove.json @@ -0,0 +1,15 @@ +{ + "name": "Dryad's Grove", + + "encounter_slug": "", + + "encounters": [], + + "requiredEncounters": 0, + + "trainers": [], + + "environment_slug": "interior", + + "connections": {} +} diff --git a/db/areas/leather-town.json b/db/areas/leather-town.json index 7815dfd..5cb24d7 100644 --- a/db/areas/leather-town.json +++ b/db/areas/leather-town.json @@ -1,4 +1,6 @@ { + "name": "Leather Town", + "encounter_slug": "", "encounters": [], @@ -9,6 +11,18 @@ "environment_slug": "interior", + "locations": { + "healing_center": { + "type": "healingCenter", + "price": 20 + }, + "leather_scoop": { + "type": "shop", + "economy": "leather_scoop", + "items": [] + } + }, + "connections": { "city-park": { "conditions": [] diff --git a/db/areas/paper-town.json b/db/areas/paper-town.json index 7020252..688dd7f 100644 --- a/db/areas/paper-town.json +++ b/db/areas/paper-town.json @@ -1,4 +1,6 @@ { + "name": "Paper Town", + "encounter_slug": "", "encounters": [], diff --git a/db/areas/route1.json b/db/areas/route1.json index 1615772..5c49e04 100644 --- a/db/areas/route1.json +++ b/db/areas/route1.json @@ -1,4 +1,6 @@ { + "name": "Route 1", + "encounter_slug": "route1", "encounters": [], diff --git a/db/areas/route2.json b/db/areas/route2.json index e4c6d2a..b08e1af 100644 --- a/db/areas/route2.json +++ b/db/areas/route2.json @@ -1,4 +1,6 @@ { + "name": "Route 2", + "encounter_slug": "route2", "encounters": [], diff --git a/db/areas/route3.json b/db/areas/route3.json index 3fa7c2f..ea59234 100644 --- a/db/areas/route3.json +++ b/db/areas/route3.json @@ -1,4 +1,6 @@ { + "name": "Route 3", + "encounter_slug": "route3", "encounters": [], |