From b317106055c3f55c4a36eb2f34f72550f691c457 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Thu, 26 Mar 2026 11:38:26 -0700 Subject: [PATCH] =?UTF-8?q?feat(units):=20=E2=9C=A8=20Add=20new=20unit=20d?= =?UTF-8?q?efinitions=20or=20update=20existing=20unit=20stats,=20names,=20?= =?UTF-8?q?and=20behaviors=20in=20"Age=20of=20Dwarves"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- games/age-of-dwarves/data/units/stub.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 games/age-of-dwarves/data/units/stub.json diff --git a/games/age-of-dwarves/data/units/stub.json b/games/age-of-dwarves/data/units/stub.json new file mode 100644 index 00000000..9ad3b6ee --- /dev/null +++ b/games/age-of-dwarves/data/units/stub.json @@ -0,0 +1,17 @@ +[ + { + "id": "founder", + "name": "Founder", + "description": "Colonist who founds new cities", + "gender": { + "male": { "name": "Founder", "sprite": "sprites/units/founder_m.png" }, + "female": { "name": "Founder", "sprite": "sprites/units/founder_f.png" } + }, + "combat_type": "civilian", + "school": null, + "domain": "land", + "keywords": [], + "sprite": "sprites/units/founder.png", + "race_required": null + } +]