diff --git a/docs/circular-deps.txt b/docs/circular-deps.txt index 41a79cf..00ddb39 100644 --- a/docs/circular-deps.txt +++ b/docs/circular-deps.txt @@ -1,4 +1,4 @@ # Circular Dependencies -Generated: 2026-05-27T10:20:49.372Z +Generated: 2026-05-27T10:26:21.515Z No circular dependencies found. ✅ diff --git a/docs/dependency-graph.json b/docs/dependency-graph.json index 6ff6ab9..69a6eac 100644 --- a/docs/dependency-graph.json +++ b/docs/dependency-graph.json @@ -1,6 +1,6 @@ { "_meta": { - "generated": "2026-05-27T10:20:47.648Z", + "generated": "2026-05-27T10:26:19.655Z", "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." }, diff --git a/src/lib/game/data/golems/elemental-golems.ts b/src/lib/game/data/golems/elemental-golems.ts index 9edab30..d7d5d74 100644 --- a/src/lib/game/data/golems/elemental-golems.ts +++ b/src/lib/game/data/golems/elemental-golems.ts @@ -54,12 +54,12 @@ export const ELEMENTAL_GOLEMS: Record = { name: 'Sand Golem', description: 'A shifting construct of sand particles. Hits multiple enemies.', baseManaType: 'sand', - summonCost: [elemCost('sand', 8), elemCost('earth', 3)], - maintenanceCost: [elemCost('sand', 0.5), elemCost('earth', 0.2)], - damage: 6, + summonCost: [elemCost('sand', 10), elemCost('earth', 4)], + maintenanceCost: [elemCost('sand', 0.6), elemCost('earth', 0.25)], + damage: 10, attackSpeed: 2.0, - hp: 35, - armorPierce: 0.1, + hp: 45, + armorPierce: 0.15, isAoe: true, aoeTargets: 2, unlockCondition: { diff --git a/src/lib/game/data/golems/hybrid-golems.ts b/src/lib/game/data/golems/hybrid-golems.ts index 76e8e1e..43ce04b 100644 --- a/src/lib/game/data/golems/hybrid-golems.ts +++ b/src/lib/game/data/golems/hybrid-golems.ts @@ -11,8 +11,8 @@ export const HYBRID_GOLEMS: Record = { name: 'Lava Golem', description: 'Molten earth and fire combined. Burns enemies over time.', baseManaType: 'earth', - summonCost: [elemCost('earth', 10), elemCost('fire', 8)], - maintenanceCost: [elemCost('earth', 0.4), elemCost('fire', 0.5)], + summonCost: [elemCost('earth', 15), elemCost('fire', 12)], + maintenanceCost: [elemCost('earth', 0.6), elemCost('fire', 0.7)], damage: 15, attackSpeed: 1.0, hp: 70, @@ -36,8 +36,8 @@ export const HYBRID_GOLEMS: Record = { name: 'Galvanic Golem', description: 'A conductive metal construct charged with lightning. Extremely fast attacks.', baseManaType: 'metal', - summonCost: [elemCost('metal', 8), elemCost('lightning', 6)], - maintenanceCost: [elemCost('metal', 0.3), elemCost('lightning', 0.6)], + summonCost: [elemCost('metal', 12), elemCost('lightning', 8)], + maintenanceCost: [elemCost('metal', 0.4), elemCost('lightning', 0.7)], damage: 10, attackSpeed: 3.5, hp: 45, @@ -61,8 +61,8 @@ export const HYBRID_GOLEMS: Record = { name: 'Obsidian Golem', description: 'Volcanic glass animated by shadow. Devastating single-target damage.', baseManaType: 'earth', - summonCost: [elemCost('earth', 12), elemCost('dark', 6)], - maintenanceCost: [elemCost('earth', 0.3), elemCost('dark', 0.4)], + summonCost: [elemCost('earth', 18), elemCost('dark', 10)], + maintenanceCost: [elemCost('earth', 0.5), elemCost('dark', 0.6)], damage: 25, attackSpeed: 0.8, hp: 55, @@ -86,12 +86,12 @@ export const HYBRID_GOLEMS: Record = { name: 'Prism Golem', description: 'A radiant crystal construct. Channels light into piercing beams.', baseManaType: 'crystal', - summonCost: [elemCost('crystal', 10), elemCost('light', 6)], - maintenanceCost: [elemCost('crystal', 0.4), elemCost('light', 0.4)], - damage: 20, - attackSpeed: 1.5, - hp: 50, - armorPierce: 0.35, + summonCost: [elemCost('crystal', 16), elemCost('light', 10)], + maintenanceCost: [elemCost('crystal', 0.6), elemCost('light', 0.6)], + damage: 28, + attackSpeed: 2.0, + hp: 60, + armorPierce: 0.45, isAoe: true, aoeTargets: 3, unlockCondition: { @@ -111,12 +111,12 @@ export const HYBRID_GOLEMS: Record = { name: 'Quicksilver Golem', description: 'Liquid metal that flows around defenses. Fast and hard to dodge.', baseManaType: 'metal', - summonCost: [elemCost('metal', 6), elemCost('water', 6)], - maintenanceCost: [elemCost('metal', 0.3), elemCost('water', 0.3)], - damage: 8, + summonCost: [elemCost('metal', 10), elemCost('water', 8)], + maintenanceCost: [elemCost('metal', 0.4), elemCost('water', 0.4)], + damage: 14, attackSpeed: 4.0, - hp: 40, - armorPierce: 0.3, + hp: 55, + armorPierce: 0.35, isAoe: false, aoeTargets: 1, unlockCondition: { @@ -136,8 +136,8 @@ export const HYBRID_GOLEMS: Record = { name: 'Voidstone Golem', description: 'Earth infused with void energy. The ultimate golem construct.', baseManaType: 'earth', - summonCost: [elemCost('earth', 15), elemCost('void', 8)], - maintenanceCost: [elemCost('earth', 0.3), elemCost('void', 0.6)], + summonCost: [elemCost('earth', 22), elemCost('void', 14)], + maintenanceCost: [elemCost('earth', 0.5), elemCost('void', 0.9)], damage: 40, attackSpeed: 0.6, hp: 100,