feat(golemancy): Phase 1 - Component-based construction system data definitions
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m18s

- Add new golem component types (Core, Frame, MindCircuit, Enchantment)
- Create 4 Core tiers, 7 Frames, 4 Mind Circuits, 8 Enchantments
- Rewrite golem utils for component-based stat computation
- Update GolemancyState with new fields (golemDesigns, golemLoadout, activeGolems)
- Update combat store, actions, and pipelines for new golem system
- Rewrite GolemancyTab with component selection UI
- Update fabricator discipline perks for new system
- Add comprehensive tests for component registries and utilities
- All files under 400 lines, all 743 tests passing
This commit is contained in:
2026-06-06 16:50:26 +02:00
parent c40e4ee940
commit 4b7aa82953
43 changed files with 2763 additions and 944 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# Circular Dependencies
Generated: 2026-06-05T12:07:36.291Z
Generated: 2026-06-05T13:36:31.575Z
No circular dependencies found. ✅
+1 -1
View File
@@ -1,6 +1,6 @@
{
"_meta": {
"generated": "2026-06-05T12:07:34.394Z",
"generated": "2026-06-05T13:36:29.562Z",
"description": "Import dependency graph for src/lib/game. Keys are files, values are arrays of files they import.",
"usage": "To find what a file affects, search for its path in the VALUES. To find what a file depends on, look at its KEY entry."
},
+15 -1
View File
@@ -118,6 +118,16 @@ Mana-Loop/
│ │ │ │ │ ├── ManaStatsSection.tsx
│ │ │ │ │ ├── PactStatusSection.tsx
│ │ │ │ │ └── StudyStatsSection.tsx
│ │ │ │ ├── golemancy/
│ │ │ │ │ ├── ActiveGolemsPanel.tsx
│ │ │ │ │ ├── GolemDesignBuilder.tsx
│ │ │ │ │ ├── GolemLoadoutPanel.tsx
│ │ │ │ │ ├── GolemancyComponents.test.ts
│ │ │ │ │ ├── GolemancySharedComponents.tsx
│ │ │ │ │ ├── golemancy-components.test.ts
│ │ │ │ │ ├── golemancy-utils.test.ts
│ │ │ │ │ ├── golemancy-utils.ts
│ │ │ │ │ └── types.ts
│ │ │ │ ├── AchievementsTab.tsx
│ │ │ │ ├── ActivityLog.tsx
│ │ │ │ ├── AttunementsTab.test.ts
@@ -131,7 +141,6 @@ Mana-Loop/
│ │ │ │ ├── ElementalSubtab.tsx
│ │ │ │ ├── EquipmentTab.test.ts
│ │ │ │ ├── EquipmentTab.tsx
│ │ │ │ ├── GolemancyTab.test.ts
│ │ │ │ ├── GolemancyTab.tsx
│ │ │ │ ├── GuardianPactsTab.test.ts
│ │ │ │ ├── GuardianPactsTab.tsx
@@ -319,10 +328,14 @@ Mana-Loop/
│ │ │ │ │ └── utils.ts
│ │ │ │ ├── golems/
│ │ │ │ │ ├── base-golems.ts
│ │ │ │ │ ├── cores.ts
│ │ │ │ │ ├── elemental-golems.ts
│ │ │ │ │ ├── frames.ts
│ │ │ │ │ ├── golemEnchantments.ts
│ │ │ │ │ ├── golems-data.ts
│ │ │ │ │ ├── hybrid-golems.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── mindCircuits.ts
│ │ │ │ │ ├── types.ts
│ │ │ │ │ └── utils.ts
│ │ │ │ ├── achievements.ts
@@ -373,6 +386,7 @@ Mana-Loop/
│ │ │ │ ├── gameStore.ts
│ │ │ │ ├── gameStore.types.ts
│ │ │ │ ├── golem-combat-actions.ts
│ │ │ │ ├── golemancy-actions.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── manaStore.ts
│ │ │ │ ├── non-combat-room-actions.ts