feat: implement Active Disciplines system
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 31s

This commit is contained in:
2026-05-16 19:17:12 +02:00
parent c8341f79f3
commit e462bfcc13
17 changed files with 992 additions and 100 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# Circular Dependencies
Generated: 2026-05-16T09:20:16.770Z
Generated: 2026-05-16T09:52:18.323Z
Found: 7 circular chain(s) — these MUST be fixed before modifying involved files.
1. Processed 138 files (1.3s) (36 warnings)
+1 -1
View File
@@ -1,6 +1,6 @@
{
"_meta": {
"generated": "2026-05-16T09:20:15.230Z",
"generated": "2026-05-16T09:52:16.800Z",
"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."
},
+16
View File
@@ -120,6 +120,8 @@ Mana-Loop/
│ │ │ │ ├── StudyStatsSection.tsx
│ │ │ │ ├── UpgradeEffectsSection.tsx
│ │ │ │ └── index.tsx
│ │ │ ├── tabs/
│ │ │ │ └── DisciplinesTab.tsx
│ │ │ ├── AchievementsDisplay.tsx
│ │ │ ├── ActionButtons.tsx
│ │ │ ├── ActivityLogPanel.tsx
@@ -211,6 +213,15 @@ Mana-Loop/
│ │ │ ├── index.ts
│ │ │ └── preparation-actions.ts
│ │ ├── data/
│ │ │ ├── disciplines/
│ │ │ │ ├── base-disciplines.ts
│ │ │ │ ├── base.ts
│ │ │ │ ├── enchanter-disciplines.ts
│ │ │ │ ├── enchanter.ts
│ │ │ │ ├── fabricator-disciplines.ts
│ │ │ │ ├── fabricator.ts
│ │ │ │ ├── invoker-disciplines.ts
│ │ │ │ └── invoker.ts
│ │ │ ├── enchantments/
│ │ │ │ ├── spell-effects/
│ │ │ │ │ ├── basic-spells.ts
@@ -254,6 +265,8 @@ Mana-Loop/
│ │ │ ├── enchantment-effects.ts
│ │ │ ├── enchantment-types.ts
│ │ │ └── loot-drops.ts
│ │ ├── effects/
│ │ │ └── discipline-effects.ts
│ │ ├── hooks/
│ │ │ └── useGameDerived.ts
│ │ ├── store/
@@ -287,6 +300,7 @@ Mana-Loop/
│ │ │ ├── combat-actions.ts
│ │ │ ├── combatStore.ts
│ │ │ ├── craftingStore.ts
│ │ │ ├── discipline-slice.ts
│ │ │ ├── gameActions.ts
│ │ │ ├── gameHooks.ts
│ │ │ ├── gameLoopActions.ts
@@ -298,6 +312,7 @@ Mana-Loop/
│ │ │ └── uiStore.ts
│ │ ├── types/
│ │ │ ├── attunements.ts
│ │ │ ├── disciplines.ts
│ │ │ ├── elements.ts
│ │ │ ├── equipment.ts
│ │ │ ├── game.ts
@@ -306,6 +321,7 @@ Mana-Loop/
│ │ ├── utils/
│ │ │ ├── activity-log.ts
│ │ │ ├── combat-utils.ts
│ │ │ ├── discipline-math.ts
│ │ │ ├── enemy-utils.ts
│ │ │ ├── floor-utils.ts
│ │ │ ├── formatting.ts