Initial commit: Theriapolis baseline at port/godot branch point

Captures the pre-Godot-port state of the codebase. This is the rollback
anchor for the Godot port (M0 of theriapolis-rpg-implementation-plan-godot-port.md).
All Phase 0 through Phase 6.5 work is included; Phase 7 is in flight.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Christopher Wiebe
2026-04-30 20:40:51 -07:00
commit b451f83174
525 changed files with 75786 additions and 0 deletions
@@ -0,0 +1,16 @@
{
"id": "granary",
"name": "Granary",
"category": "infrastructure",
"footprint_w_tiles": 5,
"footprint_h_tiles": 5,
"min_tier_eligible": 4,
"weight": 0.4,
"doors": [
{ "x": 2, "y": 4, "facing": "S" }
],
"decos": [
{ "x": 2, "y": 2, "deco": "counter" }
],
"roles": []
}
@@ -0,0 +1,20 @@
{
"id": "house_medium",
"name": "Townhouse",
"category": "house",
"footprint_w_tiles": 6,
"footprint_h_tiles": 5,
"min_tier_eligible": 3,
"weight": 1.0,
"doors": [
{ "x": 3, "y": 4, "facing": "S" }
],
"decos": [
{ "x": 1, "y": 1, "deco": "hearth" },
{ "x": 4, "y": 2, "deco": "bed" },
{ "x": 4, "y": 3, "deco": "bed" }
],
"roles": [
{ "tag": "resident", "spawn_at": [2, 2], "optional": true }
]
}
@@ -0,0 +1,19 @@
{
"id": "house_small",
"name": "Cottage",
"category": "house",
"footprint_w_tiles": 5,
"footprint_h_tiles": 4,
"min_tier_eligible": 5,
"weight": 1.5,
"doors": [
{ "x": 2, "y": 3, "facing": "S" }
],
"decos": [
{ "x": 1, "y": 1, "deco": "hearth" },
{ "x": 3, "y": 2, "deco": "bed" }
],
"roles": [
{ "tag": "resident", "spawn_at": [2, 2], "optional": true }
]
}
@@ -0,0 +1,24 @@
{
"id": "inn_medium",
"name": "Tavern & Lodge",
"category": "inn",
"footprint_w_tiles": 10,
"footprint_h_tiles": 8,
"min_tier_eligible": 2,
"weight": 0.6,
"doors": [
{ "x": 5, "y": 7, "facing": "S" }
],
"decos": [
{ "x": 1, "y": 1, "deco": "hearth" },
{ "x": 8, "y": 1, "deco": "counter" },
{ "x": 2, "y": 5, "deco": "bed" },
{ "x": 4, "y": 5, "deco": "bed" },
{ "x": 6, "y": 5, "deco": "bed" },
{ "x": 8, "y": 5, "deco": "bed" }
],
"roles": [
{ "tag": "innkeeper", "spawn_at": [8, 2] },
{ "tag": "barfly", "spawn_at": [3, 3], "optional": true }
]
}
@@ -0,0 +1,21 @@
{
"id": "inn_small",
"name": "Small Inn",
"category": "inn",
"footprint_w_tiles": 8,
"footprint_h_tiles": 6,
"min_tier_eligible": 4,
"weight": 1.0,
"doors": [
{ "x": 4, "y": 5, "facing": "S" }
],
"decos": [
{ "x": 1, "y": 1, "deco": "hearth" },
{ "x": 6, "y": 1, "deco": "counter" },
{ "x": 2, "y": 4, "deco": "bed" },
{ "x": 5, "y": 4, "deco": "bed" }
],
"roles": [
{ "tag": "innkeeper", "spawn_at": [6, 2] }
]
}
@@ -0,0 +1,22 @@
{
"id": "magistrate",
"name": "Magistrate's Hall",
"category": "civic",
"footprint_w_tiles": 8,
"footprint_h_tiles": 7,
"min_tier_eligible": 2,
"weight": 0.3,
"doors": [
{ "x": 4, "y": 6, "facing": "S" }
],
"decos": [
{ "x": 4, "y": 1, "deco": "counter" },
{ "x": 3, "y": 1, "deco": "counter" },
{ "x": 1, "y": 5, "deco": "hearth" },
{ "x": 6, "y": 5, "deco": "sign" }
],
"roles": [
{ "tag": "magistrate", "spawn_at": [4, 2] },
{ "tag": "constable", "spawn_at": [2, 4], "optional": true }
]
}
@@ -0,0 +1,20 @@
{
"id": "shop_alchemist",
"name": "Alchemist",
"category": "shop",
"footprint_w_tiles": 5,
"footprint_h_tiles": 5,
"min_tier_eligible": 2,
"weight": 0.4,
"doors": [
{ "x": 2, "y": 4, "facing": "S" }
],
"decos": [
{ "x": 1, "y": 1, "deco": "counter" },
{ "x": 3, "y": 1, "deco": "counter" },
{ "x": 1, "y": 3, "deco": "hearth" }
],
"roles": [
{ "tag": "alchemist", "spawn_at": [2, 2] }
]
}
@@ -0,0 +1,20 @@
{
"id": "shop_general",
"name": "General Store",
"category": "shop",
"footprint_w_tiles": 6,
"footprint_h_tiles": 5,
"min_tier_eligible": 4,
"weight": 1.0,
"doors": [
{ "x": 3, "y": 4, "facing": "S" }
],
"decos": [
{ "x": 4, "y": 1, "deco": "counter" },
{ "x": 4, "y": 2, "deco": "counter" },
{ "x": 1, "y": 1, "deco": "sign" }
],
"roles": [
{ "tag": "shopkeeper", "spawn_at": [4, 3] }
]
}
@@ -0,0 +1,20 @@
{
"id": "shop_smithy",
"name": "Smithy",
"category": "shop",
"footprint_w_tiles": 6,
"footprint_h_tiles": 5,
"min_tier_eligible": 3,
"weight": 0.7,
"doors": [
{ "x": 3, "y": 4, "facing": "S" }
],
"decos": [
{ "x": 1, "y": 1, "deco": "hearth" },
{ "x": 2, "y": 1, "deco": "hearth" },
{ "x": 4, "y": 1, "deco": "counter" }
],
"roles": [
{ "tag": "smith", "spawn_at": [4, 3] }
]
}
+16
View File
@@ -0,0 +1,16 @@
{
"id": "well",
"name": "Well",
"category": "infrastructure",
"footprint_w_tiles": 3,
"footprint_h_tiles": 3,
"min_tier_eligible": 5,
"weight": 0.5,
"doors": [
{ "x": 1, "y": 2, "facing": "S" }
],
"decos": [
{ "x": 1, "y": 1, "deco": "counter" }
],
"roles": []
}