Initial import

This commit is contained in:
Andraxion 2026-06-26 18:18:14 -04:00
commit ab891a315c
773 changed files with 257255 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" shape-rendering="crispEdges">
<!-- Chat bubble body -->
<rect x="1" y="1" width="13" height="9" rx="2" ry="2" fill="#b9d4ff" />
<rect x="2" y="2" width="11" height="7" rx="1" ry="1" fill="#daeeff" />
<!-- Bubble tail -->
<rect x="3" y="10" width="2" height="1" fill="#b9d4ff" />
<rect x="2" y="11" width="2" height="1" fill="#b9d4ff" />
<rect x="1" y="12" width="2" height="1" fill="#b9d4ff" />
<!-- Text dots -->
<rect x="4" y="5" width="2" height="2" fill="#4a7cc7" />
<rect x="7" y="5" width="2" height="2" fill="#4a7cc7" />
<rect x="10" y="5" width="2" height="2" fill="#4a7cc7" />
</svg>

After

Width:  |  Height:  |  Size: 698 B

View file

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" shape-rendering="crispEdges">
<rect width="16" height="16" fill="none"/>
<rect x="2" y="1" width="10" height="14" rx="1" fill="#f4e8c6" stroke="#1b2740" stroke-width="1"/>
<rect x="3" y="3" width="8" height="1" fill="#89a7d8"/>
<rect x="3" y="5" width="6" height="1" fill="#89a7d8"/>
<rect x="3" y="7" width="5" height="1" fill="#89a7d8"/>
<rect x="3" y="9" width="4" height="1" fill="#89a7d8"/>
<rect x="11" y="8" width="2" height="6" transform="rotate(45 12 11)" fill="#ffd166" stroke="#1b2740" stroke-width="1"/>
<rect x="10" y="11" width="2" height="3" transform="rotate(45 11 12.5)" fill="#ff7b72" stroke="#1b2740" stroke-width="1"/>
<rect x="13" y="6" width="2" height="2" transform="rotate(45 14 7)" fill="#f8f8f8" stroke="#1b2740" stroke-width="1"/>
</svg>

After

Width:  |  Height:  |  Size: 843 B

16
content/Images/swap.svg Normal file
View file

@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" shape-rendering="crispEdges">
<!-- Top arrow: left to right -->
<rect x="2" y="3" width="9" height="2" fill="#ffe08a" />
<rect x="9" y="2" width="2" height="1" fill="#ffe08a" />
<rect x="10" y="2" width="2" height="1" fill="#ffe08a" />
<rect x="11" y="3" width="2" height="2" fill="#ffe08a" />
<rect x="10" y="5" width="2" height="1" fill="#ffe08a" />
<rect x="9" y="5" width="2" height="1" fill="#ffe08a" />
<!-- Bottom arrow: right to left -->
<rect x="5" y="10" width="9" height="2" fill="#7bd4a8" />
<rect x="5" y="10" width="2" height="1" fill="#7bd4a8" />
<rect x="4" y="10" width="2" height="1" fill="#7bd4a8" />
<rect x="2" y="10" width="2" height="2" fill="#7bd4a8" />
<rect x="4" y="12" width="2" height="1" fill="#7bd4a8" />
<rect x="5" y="12" width="2" height="1" fill="#7bd4a8" />
</svg>

After

Width:  |  Height:  |  Size: 921 B

22
content/abilities.json Normal file
View file

@ -0,0 +1,22 @@
{
"schemaVersion": 1,
"abilities": [
{
"id": "ab_slime_tackle",
"name": "Tackle",
"targeting": {
"mode": "single_enemy",
"range": 1,
"requiresLos": false
},
"cost": { "mp": 0, "ap": 1 },
"power": {
"formula": "physical_basic",
"base": 8,
"scalingStat": "attack",
"scaling": 1.0
},
"statusEffectsOnHit": []
}
]
}

8
content/dev_config.json Normal file
View file

@ -0,0 +1,8 @@
{
"autoReloadWatch": false,
"watchIntervalMs": 750,
"debugInventoryItems": [
"iron_ore"
],
"debugFlags": []
}

1122
content/dialogues.json Normal file

File diff suppressed because it is too large Load diff

17
content/factions.json Normal file
View file

@ -0,0 +1,17 @@
{
"schemaVersion": 1,
"factions": [
{
"id": "knights_rosary",
"name": "Knights of The Rosary",
"description": "The chivalrous knights who protect the realm",
"color": "#8e9717"
},
{
"id": "dangerous_gatekeeper",
"name": "Extremely Serious Gatekeeper",
"description": "This guys is fuckin' serious",
"color": "#fa0000"
}
]
}

3862
content/images.json Normal file

File diff suppressed because it is too large Load diff

90
content/items.json Normal file
View file

@ -0,0 +1,90 @@
{
"schemaVersion": 1,
"items": [
{
"id": "item_potion_small",
"name": "Small Potion",
"type": "consumable",
"actionsList": [
{
"action": "Inspect",
"effects": [],
"triggers": []
}
],
"rarity": "common",
"maxStack": 20,
"value": 25,
"actions": [
"Inspect"
],
"questItem": false,
"destroyable": true,
"sellable": true,
"unique": false,
"effects": [
{
"kind": "restore_hp_flat",
"amount": 50
}
],
"tags": [
"healing",
"shop_basic"
],
"icon": "items/potion_small.png"
},
{
"id": "item_gel",
"name": "Slime Gel",
"type": "material",
"actionsList": [
{
"action": "Inspect",
"effects": [],
"triggers": []
}
],
"rarity": "common",
"maxStack": 99,
"value": 5,
"actions": [
"Inspect",
"Drop"
],
"questItem": false,
"destroyable": true,
"sellable": true,
"unique": false,
"effects": [],
"tags": [
"crafting"
],
"icon": "items/gel.png"
},
{
"id": "copper_ore",
"name": "Copper Ore",
"type": "material",
"actionsList": [
{
"action": "Inspect",
"effects": []
}
],
"rarity": "common",
"maxStack": 99,
"value": 5,
"actions": [
"Inspect"
],
"questItem": false,
"destroyable": true,
"sellable": true,
"unique": false,
"effects": [],
"tags": [],
"icon": ""
}
]
}

14
content/loot_tables.json Normal file
View file

@ -0,0 +1,14 @@
{
"schemaVersion": 1,
"lootTables": [
{
"id": "loot_slime_basic",
"entries": [
{ "itemId": "item_potion_small", "weight": 30, "min": 1, "max": 1 },
{ "itemId": "item_gel", "weight": 70, "min": 1, "max": 3 }
],
"rollsMin": 1,
"rollsMax": 2
}
]
}

46
content/monsters.json Normal file
View file

@ -0,0 +1,46 @@
{
"schemaVersion": 1,
"monsters": [
{
"id": "monster_slime_green",
"name": "Green Slime",
"level": 1,
"faction": "wild",
"stats": {
"maxHp": 30,
"maxMp": 0,
"attack": 6,
"defense": 2,
"speed": 4
},
"aiProfileId": "ai_basic_melee",
"abilities": [
"ab_slime_tackle"
],
"lootTableId": "loot_slime_basic",
"tags": [
"ooze",
"early_zone"
],
"sprite": "monsters/slime_green.png"
},
{
"id": "monster_new",
"name": "New Monster",
"level": 1,
"faction": "wild",
"stats": {
"maxHp": 10,
"maxMp": 0,
"attack": 1,
"defense": 1,
"speed": 1
},
"aiProfileId": "",
"abilities": [],
"lootTableId": "",
"tags": [],
"sprite": ""
}
]
}

View file

@ -0,0 +1,33 @@
{
"schemaVersion": 1,
"npcTemplates": [
{
"id": "npc_gatekeeper_bubbles",
"name": "Bubbles",
"description": "",
"title": "Mr.",
"faction": "dangerous_gatekeeper",
"spriteId": "npc_human_style_13",
"defaultDialogueId": "dlg_npc_gatekeeper_bubbles",
"shopInventoryId": "",
"lootTableId": "",
"abilities": [],
"passiveAbilities": [],
"flags": []
},
{
"id": "npc_mysterious_stranger",
"name": "The Mysterious Stranger",
"description": "",
"title": "",
"faction": "",
"spriteId": "npc_human_style_05",
"defaultDialogueId": "dlg_npc_mysterious_stranger",
"shopInventoryId": "",
"lootTableId": "",
"abilities": [],
"passiveAbilities": [],
"flags": []
}
]
}

58
content/quests.json Normal file
View file

@ -0,0 +1,58 @@
{
"schemaVersion": 1,
"quests": [
{
"questId": 1,
"name": "Ore for the Blacksmith",
"steps": [
{
"stepID": 1,
"id": "step_collect_ore",
"name": "Collect 3 copper ore",
"conditionType": "always",
"conditionValue": ""
},
{
"stepID": 2,
"id": "step_return_blacksmith",
"name": "Return to Doran",
"conditionType": "always",
"conditionValue": ""
}
],
"requirements": [
{
"conditionType": "always",
"conditionValue": ""
}
],
"reward": {
"xp": 100,
"gold": 40,
"enabledConditions": [
"quest_ore_completed",
"shop_blacksmith_tier2_unlocked"
]
}
},
{
"questId": 2,
"name": "More Ore!",
"steps": [
{
"stepID": 1,
"id": "step_1",
"name": "Talk to the quest giver",
"conditionType": "always",
"conditionValue": ""
}
],
"requirements": [],
"reward": {
"xp": 100,
"gold": 100,
"enabledConditions": []
}
}
]
}

View file

@ -0,0 +1,88 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Ability Definitions",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "abilities"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"abilities": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "name", "targeting", "cost", "power", "statusEffectsOnHit"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"targeting": {
"type": "object",
"additionalProperties": false,
"required": ["mode", "range", "requiresLos"],
"properties": {
"mode": {
"type": "string",
"minLength": 1
},
"range": {
"type": "number"
},
"requiresLos": {
"type": "boolean"
}
}
},
"cost": {
"type": "object",
"additionalProperties": false,
"required": ["mp", "ap"],
"properties": {
"mp": {
"type": "number"
},
"ap": {
"type": "number"
}
}
},
"power": {
"type": "object",
"additionalProperties": false,
"required": ["formula", "base", "scalingStat", "scaling"],
"properties": {
"formula": {
"type": "string",
"minLength": 1
},
"base": {
"type": "number"
},
"scalingStat": {
"type": "string",
"minLength": 1
},
"scaling": {
"type": "number"
}
}
},
"statusEffectsOnHit": {
"type": "array",
"items": {
"type": "object"
}
}
}
}
}
}
}

View file

@ -0,0 +1,28 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Developer Config",
"type": "object",
"additionalProperties": false,
"required": ["autoReloadWatch", "watchIntervalMs", "debugInventoryItems", "debugFlags"],
"properties": {
"autoReloadWatch": {
"type": "boolean"
},
"watchIntervalMs": {
"type": "integer",
"minimum": 1
},
"debugInventoryItems": {
"type": "array",
"items": {
"type": "string"
}
},
"debugFlags": {
"type": "array",
"items": {
"type": "string"
}
}
}
}

View file

@ -0,0 +1,130 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Dialogue Definitions",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "dialogues"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"dialogues": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "name", "description", "dialogueNodes"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string"
},
"dialogueNodes": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "conditions", "reactions", "choices", "order"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"conditions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["text", "conditionType", "conditionValue", "conditionStepId", "conditionNot", "nextId"],
"properties": {
"text": {
"type": "string"
},
"conditionType": {
"type": "string"
},
"conditionValue": {
"type": "string"
},
"conditionStepId": {
"type": "string"
},
"conditionNot": {
"type": "boolean"
},
"nextId": {
"type": "string"
}
}
}
},
"reactions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["reactionType", "reactionValue"],
"properties": {
"reactionType": {
"type": "string"
},
"reactionValue": {
"type": "string"
}
}
}
},
"choices": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["text", "nextId", "conditionType", "conditionValue", "conditionStepId", "conditionNot", "reactionType", "reactionValue"],
"properties": {
"text": {
"type": "string"
},
"nextId": {
"type": "string"
},
"conditionType": {
"type": "string"
},
"conditionValue": {
"type": "string"
},
"conditionStepId": {
"type": "string"
},
"conditionNot": {
"type": "boolean"
},
"reactionType": {
"type": "string"
},
"reactionValue": {
"type": "string"
}
}
}
},
"order": {
"type": "integer",
"minimum": 0
}
}
}
}
}
}
}
}
}

View file

@ -0,0 +1,38 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Faction Definitions",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "factions"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"factions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "name", "description", "color"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string"
},
"color": {
"type": "string",
"pattern": "^#[0-9A-Fa-f]{6}$"
}
}
}
}
}
}

View file

@ -0,0 +1,119 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Image Catalog",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "images"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"images": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"name",
"description",
"width",
"height",
"pixelScale",
"opacity",
"tags",
"roles",
"tileSymbol",
"frames",
"defaultFrame",
"speed",
"playback"
],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string"
},
"width": {
"type": "integer",
"minimum": 1
},
"height": {
"type": "integer",
"minimum": 1
},
"pixelScale": {
"type": "number",
"minimum": 1
},
"opacity": {
"type": "number",
"minimum": 0
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"roles": {
"type": "array",
"items": {
"type": "string",
"enum": ["tile", "sprite"]
}
},
"tileSymbol": {
"type": "string"
},
"frames": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "rows", "enabled", "index"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"rows": {
"type": "array",
"items": {
"type": "string"
}
},
"enabled": {
"type": "boolean"
},
"index": {
"type": "integer",
"minimum": 0
}
}
}
},
"defaultFrame": {
"type": "string"
},
"speed": {
"type": "number",
"minimum": 0
},
"playback": {
"type": "string"
}
}
}
}
}
}

View file

@ -0,0 +1,123 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Item Definitions",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "items"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"items": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"name",
"type",
"actionsList",
"rarity",
"maxStack",
"value",
"actions",
"questItem",
"destroyable",
"sellable",
"unique",
"effects",
"tags",
"icon"
],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"type": {
"type": "string",
"minLength": 1
},
"actionsList": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true,
"required": ["action", "effects"],
"properties": {
"action": {
"type": "string",
"minLength": 1
},
"effects": {
"type": "array",
"items": {
"type": "object"
}
},
"triggers": {
"type": "array",
"items": {
"type": "object"
}
}
}
}
},
"rarity": {
"type": "string",
"minLength": 1
},
"maxStack": {
"type": "integer",
"minimum": 1
},
"value": {
"type": "integer",
"minimum": 0
},
"actions": {
"type": "array",
"items": {
"type": "string"
}
},
"questItem": {
"type": "boolean"
},
"destroyable": {
"type": "boolean"
},
"sellable": {
"type": "boolean"
},
"unique": {
"type": "boolean"
},
"effects": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"icon": {
"type": "string"
}
}
}
}
}
}

View file

@ -0,0 +1,61 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Loot Table Definitions",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "lootTables"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"lootTables": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "entries", "rollsMin", "rollsMax"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"entries": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["itemId", "weight", "min", "max"],
"properties": {
"itemId": {
"type": "string",
"minLength": 1
},
"weight": {
"type": "integer",
"minimum": 0
},
"min": {
"type": "integer",
"minimum": 0
},
"max": {
"type": "integer",
"minimum": 0
}
}
}
},
"rollsMin": {
"type": "integer",
"minimum": 0
},
"rollsMax": {
"type": "integer",
"minimum": 0
}
}
}
}
}
}

View file

@ -0,0 +1,94 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Monster Definitions",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "monsters"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"monsters": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"name",
"level",
"faction",
"stats",
"aiProfileId",
"abilities",
"lootTableId",
"tags",
"sprite"
],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"level": {
"type": "integer",
"minimum": 1
},
"faction": {
"type": "string"
},
"stats": {
"type": "object",
"additionalProperties": false,
"required": ["maxHp", "maxMp", "attack", "defense", "speed"],
"properties": {
"maxHp": {
"type": "integer",
"minimum": 0
},
"maxMp": {
"type": "integer",
"minimum": 0
},
"attack": {
"type": "integer"
},
"defense": {
"type": "integer"
},
"speed": {
"type": "integer"
}
}
},
"aiProfileId": {
"type": "string"
},
"abilities": {
"type": "array",
"items": {
"type": "string"
}
},
"lootTableId": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"sprite": {
"type": "string"
}
}
}
}
}
}

View file

@ -0,0 +1,83 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "NPC Template Definitions",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "npcTemplates"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"npcTemplates": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"id",
"name",
"description",
"title",
"faction",
"spriteId",
"defaultDialogueId",
"shopInventoryId",
"lootTableId",
"abilities",
"passiveAbilities",
"flags"
],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string"
},
"title": {
"type": "string"
},
"faction": {
"type": "string"
},
"spriteId": {
"type": "string"
},
"defaultDialogueId": {
"type": "string"
},
"shopInventoryId": {
"type": "string"
},
"lootTableId": {
"type": "string"
},
"abilities": {
"type": "array",
"items": {
"type": "string"
}
},
"passiveAbilities": {
"type": "array",
"items": {
"type": "string"
}
},
"flags": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}

View file

@ -0,0 +1,106 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "NPC Instance Payload",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "npcs"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"npcs": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true,
"required": ["id", "name", "position"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"title": {
"type": "string"
},
"faction": {
"type": "string"
},
"spriteId": {
"type": "string"
},
"defaultDialogueId": {
"type": "string"
},
"dialogueId": {
"type": "string"
},
"shopInventoryId": {
"type": "string"
},
"lootTableId": {
"type": "string"
},
"abilities": {
"type": "array",
"items": {
"type": "string"
}
},
"passiveAbilities": {
"type": "array",
"items": {
"type": "string"
}
},
"flags": {
"type": "array",
"items": {
"type": "string"
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"layer": {
"type": "integer"
},
"enabled": {
"type": "boolean"
},
"mapId": {
"type": "string"
},
"entityType": {
"type": "string"
},
"dialogueNodes": {
"type": "array"
},
"position": {
"type": "object",
"additionalProperties": false,
"required": ["x", "y"],
"properties": {
"x": {
"type": "integer"
},
"y": {
"type": "integer"
}
}
}
}
}
}
}
}

View file

@ -0,0 +1,104 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Quest Definitions",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "quests"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"quests": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["questId", "name", "steps", "requirements", "reward"],
"properties": {
"questId": {
"type": "integer",
"minimum": 1
},
"name": {
"type": "string",
"minLength": 1
},
"currentStepId": {
"type": "string"
},
"completionState": {
"type": "string"
},
"steps": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "name", "conditionType", "conditionValue"],
"properties": {
"stepID": {
"type": "integer",
"minimum": 1
},
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"conditionType": {
"type": "string",
"minLength": 1
},
"conditionValue": {
"type": "string"
}
}
}
},
"requirements": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["conditionType", "conditionValue"],
"properties": {
"conditionType": {
"type": "string",
"minLength": 1
},
"conditionValue": {
"type": "string"
}
}
}
},
"reward": {
"type": "object",
"additionalProperties": false,
"required": ["xp", "gold", "enabledConditions"],
"properties": {
"xp": {
"type": "integer",
"minimum": 0
},
"gold": {
"type": "integer",
"minimum": 0
},
"enabledConditions": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}
}

View file

@ -0,0 +1,41 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "World Bookmarks",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "worldId", "bookmarks"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"worldId": {
"type": "string",
"minLength": 1
},
"bookmarks": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "label", "x", "y"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"label": {
"type": "string",
"minLength": 1
},
"x": {
"type": "integer"
},
"y": {
"type": "integer"
}
}
}
}
}
}

View file

@ -0,0 +1,141 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "World Chunk",
"type": "object",
"additionalProperties": false,
"required": [
"schemaVersion",
"worldId",
"chunkX",
"chunkY",
"width",
"height",
"backgroundTileId",
"roomLayers",
"heightLayers",
"instances"
],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"worldId": {
"type": "string",
"minLength": 1
},
"chunkX": {
"type": "integer"
},
"chunkY": {
"type": "integer"
},
"width": {
"type": "integer",
"minimum": 1
},
"height": {
"type": "integer",
"minimum": 1
},
"backgroundTileId": {
"type": "string"
},
"roomLayers": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["layer", "rows", "instanceIds"],
"properties": {
"layer": {
"type": "integer",
"minimum": 0
},
"name": {
"type": "string"
},
"rows": {
"type": "array",
"items": {
"type": "string"
}
},
"instanceIds": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"heightLayers": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "z", "x", "y", "rows"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string"
},
"z": {
"type": "integer",
"minimum": 1
},
"x": {
"type": "integer",
"minimum": 0
},
"y": {
"type": "integer",
"minimum": 0
},
"rows": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"instances": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "layer", "x", "y", "record"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"templateId": {
"type": "string"
},
"layer": {
"type": "integer",
"minimum": 0
},
"x": {
"type": "integer",
"minimum": 0
},
"y": {
"type": "integer",
"minimum": 0
},
"record": {
"type": "object"
}
}
}
}
}
}

View file

@ -0,0 +1,73 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "World Definition",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "id", "name", "chunkWidth", "chunkHeight", "tileSize", "defaultBackgroundTileId", "spawn"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"chunkWidth": {
"type": "integer",
"minimum": 1
},
"chunkHeight": {
"type": "integer",
"minimum": 1
},
"tileSize": {
"type": "number",
"minimum": 8
},
"backgroundColor": {
"type": "string",
"pattern": "^#[0-9A-Fa-f]{6}$"
},
"defaultBackgroundTileId": {
"type": "string"
},
"heightBlurStep": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"editorUi": {
"type": "object"
},
"spawn": {
"type": "object",
"additionalProperties": false,
"required": ["x", "y"],
"properties": {
"x": {
"type": "integer"
},
"y": {
"type": "integer"
}
}
},
"editor": {
"type": "object",
"additionalProperties": false,
"properties": {
"defaultZoom": {
"type": "number"
},
"gridVisible": {
"type": "boolean"
}
}
}
}
}

View file

@ -0,0 +1,35 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "World Index",
"type": "object",
"additionalProperties": false,
"required": ["schemaVersion", "worlds"],
"properties": {
"schemaVersion": {
"type": "integer",
"minimum": 1
},
"worlds": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["id", "name", "worldDir"],
"properties": {
"id": {
"type": "string",
"minLength": 1
},
"name": {
"type": "string",
"minLength": 1
},
"worldDir": {
"type": "string",
"minLength": 1
}
}
}
}
}
}

10
content/worlds.json Normal file
View file

@ -0,0 +1,10 @@
{
"schemaVersion": 1,
"worlds": [
{
"id": "overworld",
"name": "Overworld Mock",
"worldDir": "worlds/overworld"
}
]
}

View file

@ -0,0 +1,18 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"bookmarks": [
{
"id": "poi_1",
"label": "Origin",
"x": 112,
"y": 112
},
{
"id": "poi_2",
"label": "JustinVille",
"x": -80,
"y": 176
}
]
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -1,
"chunkY": 0,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -1,
"chunkY": 1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -1,
"chunkY": 2,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -1,
"chunkY": 3,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -1,
"chunkY": 4,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -1,
"chunkY": 5,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -1,
"chunkY": 6,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -1,
"chunkY": 7,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -2,
"chunkY": 1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -2,
"chunkY": 2,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -2,
"chunkY": 3,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -2,
"chunkY": 4,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -2,
"chunkY": 5,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -2,
"chunkY": 6,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -2,
"chunkY": 7,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -3,
"chunkY": 1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -3,
"chunkY": 2,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -3,
"chunkY": 3,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -3,
"chunkY": 4,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -3,
"chunkY": 5,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -3,
"chunkY": 6,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -3,
"chunkY": 7,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -4,
"chunkY": 2,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -4,
"chunkY": 3,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -4,
"chunkY": 4,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -4,
"chunkY": 5,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": -4,
"chunkY": 6,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 0,
"chunkY": -1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 0,
"chunkY": 0,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 0,
"chunkY": 1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 0,
"chunkY": 2,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 0,
"chunkY": 3,
"width": 32,
"height": 32,
"backgroundTileId": "tile_0686c0867f",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 0,
"chunkY": 4,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 0,
"chunkY": 5,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 0,
"chunkY": 6,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 0,
"chunkY": 7,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 10,
"chunkY": 0,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 10,
"chunkY": 1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 10,
"chunkY": 2,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 10,
"chunkY": 3,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 10,
"chunkY": 4,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 1,
"chunkY": -1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 1,
"chunkY": 0,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 1,
"chunkY": 1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 1,
"chunkY": 2,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 1,
"chunkY": 3,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 1,
"chunkY": 4,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 1,
"chunkY": 5,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 1,
"chunkY": 6,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 1,
"chunkY": 7,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 2,
"chunkY": -1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 2,
"chunkY": 0,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 2,
"chunkY": 1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,127 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 2,
"chunkY": 2,
"width": 32,
"height": 32,
"backgroundTileId": "",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
},
{
"layer": 2,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,161 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 2,
"chunkY": 3,
"width": 32,
"height": 32,
"backgroundTileId": "",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"...............................X",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
".........................k......",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" NN",
" ",
" N",
" N",
" ",
" ",
" ",
" ",
" ",
" N",
" ",
" X",
" X",
" X",
" X",
" X",
" X",
" j",
" ",
" ZZ",
" i ZZ",
" ihhhhhhh",
" XXXXXX9",
" kkkkkkk9",
" nnnnnn9",
" lkkkkk9",
" XkkkkkkX",
" XXYXXaXX",
" ",
" ",
" ",
" Z"
],
"instanceIds": []
},
{
"layer": 2,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" m",
" l",
" ",
" ",
" ",
" ihhhhhh",
" eeeeeeee",
" dhjjjjjd",
" dh d",
" dh d",
" dg d",
" cccccccc",
" jjjjjjjj",
" o ",
" o ",
" o ",
" qpppp "
],
"instanceIds": [
"inst_92f0ea29e6"
]
}
],
"heightLayers": [],
"instances": [
{
"id": "inst_92f0ea29e6",
"templateId": "npc_mysterious_stranger",
"layer": 2,
"x": 28,
"y": 23,
"record": {
"id": "inst_92f0ea29e6",
"name": "The Mysterious Stranger",
"description": "",
"title": "",
"faction": "",
"spriteId": "npc_human_style_05",
"defaultDialogueId": "dlg_npc_mysterious_stranger",
"shopInventoryId": "",
"lootTableId": "",
"abilities": [],
"passiveAbilities": [],
"flags": [],
"layer": 2,
"position": {
"x": 92,
"y": 119
},
"templateId": "npc_mysterious_stranger",
"entityType": "friendly",
"enabled": true,
"dialogueId": "",
"tags": []
}
}
]
}

View file

@ -0,0 +1,127 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 2,
"chunkY": 4,
"width": 32,
"height": 32,
"backgroundTileId": "",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
},
{
"layer": 2,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 2,
"chunkY": 5,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 2,
"chunkY": 6,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 2,
"chunkY": 7,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 2,
"chunkY": 8,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 3,
"chunkY": -1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 3,
"chunkY": 0,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 3,
"chunkY": 1,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,127 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 3,
"chunkY": 2,
"width": 32,
"height": 32,
"backgroundTileId": "",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
},
{
"layer": 2,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,127 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 3,
"chunkY": 3,
"width": 32,
"height": 32,
"backgroundTileId": "",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
".......XXXXXXXXXXXXXXXX.........",
".......XXXXXXXXXXXXXXXX.........",
".......XXXXXXXXXXXXXXXX.........",
".......XXXXXXXXXXXXXXXX.........",
".......XXXXXXXXXXXXXXXX.........",
".......XXXXXXXXXXXXXXXX.........",
".......XXXXXXXXXXXXXXXX.........",
".......XXXXXXXXXXXXXXXX.........",
".......XXXXXXXXXXXXXXXX.........",
".......XXXXXXXXXXXXXXXX.........",
"XXXXX..XXXXXXXXXXXXXXXX.........",
"................................",
"................................",
"................................",
".hhhhh..........................",
"hhhhhh..........................",
"XXXXdh..........................",
"kkkkdh..........................",
"kkkkdh..........................",
"cccccN..........................",
"NNNN............................",
"N...............................",
"................................",
"................................",
"..........Y.....................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
"NNNNNNNNZNNNNNNNNNNNZZZZZZZZZZZZ",
"NNNNNZZZNN N N NNNNZZZZZZZZZZZZ",
"NNNNNNN N N NNNNZZZZZZZZZZZZZZZZ",
"NNNNNZNNNZZZZZZZZZZZZZZZZZZZZZZZ",
"NNNNZNNNNNZ Z ZZZZ ZZZZZZZZZZZZ",
"NNZNNNZNNNZZZZZZZZZZZZZZZZZZZZZZ",
"NZNNZNN8444444444444447ZZZZZZZZZ",
"NNNNZZN9lOM L ML9EEEE9ZZZZZZZZZ",
"NNZNNNN9l O MO 2109ZZZZZZZZZ",
"ZNZZZNN9 bSU b m903009ZZZZZZZZZ",
"NNZNNZN9l U M m54444AZZZZZZZZZ",
"XXXXXXZ9l V b V L 9ZZZZZZZZZ",
"XXXXXXZ9 U Q USb MJI 9ZZZZZZZNZ",
"XXXXXXN9 Sb QQU USU L9ZZNNZZZZZ",
"XXXXXXN9 U QP b M b 9ZZZN ZZZZ",
"XXXXXXN9l Q 9ZZZN NZZZ",
"XXXXXXN5444447 84444446ZZZ ZZ",
"jjjjjjZZZZZZZZZZZZZZZZZZZ NZZ",
"NNNNNNZZZZZZZZZZZZUZLZZZ ZZZZ",
"ZZZNZ ZZZZZZZZZLZUVNZZHZ Z NZZZZ",
" ZZZZZZNZZZZZZZZHHNZNZZZZZN",
"eeeee ZZNNZNZZNZZZZZZNZ ZZZZNZZZ",
" NZZZNZZZNZZZNZZZ ZZZZZZZZ",
" O ZZZZZZNZZZZZZZZ ZZZZZZZZZ",
"L ZNihhhhhhhhhhhhZZZZZZZZZZZ",
" hZihhhhhhhhhhhhhNZZZZZNZZZZ",
"XXXXXgZddddddddddddhhZNZZZZZZZZZ",
" ZddddddddddddhhZZZZZZZZZZZ",
"ZZZ ZZcccccccccccchhZNZZZZZZNZZ",
"ZZZZNZZXXXaXXXaXXXXhZZ ZZZZZZZZ",
"ZZZZZZZXYXXXXXXXYXX ZZNZZZZZZ",
"ZZZZZmZZZZZllNmmZZ NZZZNZZZZZZZ"
],
"instanceIds": []
},
{
"layer": 2,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" s ",
" ",
" ",
" s ",
" ll ",
" mm l s ",
" jj s ",
" m ",
"l j ",
" m ",
" ",
" ",
" ",
"h ",
" ",
"jjjj ",
" l ",
" lm ",
" eeeeeeeeeeeehh ",
"hjjjj hh ",
"g f f hh ",
" hh ",
" jjjjjjjjjjjjhg ",
" g ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,127 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 3,
"chunkY": 4,
"width": 32,
"height": 32,
"backgroundTileId": "",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" lm ",
" l m N N ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
},
{
"layer": 2,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 3,
"chunkY": 5,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 3,
"chunkY": 6,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 3,
"chunkY": 7,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

View file

@ -0,0 +1,89 @@
{
"schemaVersion": 1,
"worldId": "overworld",
"chunkX": 3,
"chunkY": 8,
"width": 32,
"height": 32,
"backgroundTileId": "tile_5b6206b849",
"roomLayers": [
{
"layer": 0,
"rows": [
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
],
"instanceIds": []
},
{
"layer": 1,
"rows": [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
],
"instanceIds": []
}
],
"heightLayers": [],
"instances": []
}

Some files were not shown because too many files have changed in this diff Show more