fix: rebalance golem stats for proper tier progression
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m32s

This commit is contained in:
2026-05-27 12:30:36 +02:00
parent 78766d0722
commit 5f46948568
4 changed files with 26 additions and 26 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# Circular Dependencies # Circular Dependencies
Generated: 2026-05-27T10:20:49.372Z Generated: 2026-05-27T10:26:21.515Z
No circular dependencies found. ✅ No circular dependencies found. ✅
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"_meta": { "_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.", "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." "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."
}, },
+5 -5
View File
@@ -54,12 +54,12 @@ export const ELEMENTAL_GOLEMS: Record<string, GolemDef> = {
name: 'Sand Golem', name: 'Sand Golem',
description: 'A shifting construct of sand particles. Hits multiple enemies.', description: 'A shifting construct of sand particles. Hits multiple enemies.',
baseManaType: 'sand', baseManaType: 'sand',
summonCost: [elemCost('sand', 8), elemCost('earth', 3)], summonCost: [elemCost('sand', 10), elemCost('earth', 4)],
maintenanceCost: [elemCost('sand', 0.5), elemCost('earth', 0.2)], maintenanceCost: [elemCost('sand', 0.6), elemCost('earth', 0.25)],
damage: 6, damage: 10,
attackSpeed: 2.0, attackSpeed: 2.0,
hp: 35, hp: 45,
armorPierce: 0.1, armorPierce: 0.15,
isAoe: true, isAoe: true,
aoeTargets: 2, aoeTargets: 2,
unlockCondition: { unlockCondition: {
+19 -19
View File
@@ -11,8 +11,8 @@ export const HYBRID_GOLEMS: Record<string, GolemDef> = {
name: 'Lava Golem', name: 'Lava Golem',
description: 'Molten earth and fire combined. Burns enemies over time.', description: 'Molten earth and fire combined. Burns enemies over time.',
baseManaType: 'earth', baseManaType: 'earth',
summonCost: [elemCost('earth', 10), elemCost('fire', 8)], summonCost: [elemCost('earth', 15), elemCost('fire', 12)],
maintenanceCost: [elemCost('earth', 0.4), elemCost('fire', 0.5)], maintenanceCost: [elemCost('earth', 0.6), elemCost('fire', 0.7)],
damage: 15, damage: 15,
attackSpeed: 1.0, attackSpeed: 1.0,
hp: 70, hp: 70,
@@ -36,8 +36,8 @@ export const HYBRID_GOLEMS: Record<string, GolemDef> = {
name: 'Galvanic Golem', name: 'Galvanic Golem',
description: 'A conductive metal construct charged with lightning. Extremely fast attacks.', description: 'A conductive metal construct charged with lightning. Extremely fast attacks.',
baseManaType: 'metal', baseManaType: 'metal',
summonCost: [elemCost('metal', 8), elemCost('lightning', 6)], summonCost: [elemCost('metal', 12), elemCost('lightning', 8)],
maintenanceCost: [elemCost('metal', 0.3), elemCost('lightning', 0.6)], maintenanceCost: [elemCost('metal', 0.4), elemCost('lightning', 0.7)],
damage: 10, damage: 10,
attackSpeed: 3.5, attackSpeed: 3.5,
hp: 45, hp: 45,
@@ -61,8 +61,8 @@ export const HYBRID_GOLEMS: Record<string, GolemDef> = {
name: 'Obsidian Golem', name: 'Obsidian Golem',
description: 'Volcanic glass animated by shadow. Devastating single-target damage.', description: 'Volcanic glass animated by shadow. Devastating single-target damage.',
baseManaType: 'earth', baseManaType: 'earth',
summonCost: [elemCost('earth', 12), elemCost('dark', 6)], summonCost: [elemCost('earth', 18), elemCost('dark', 10)],
maintenanceCost: [elemCost('earth', 0.3), elemCost('dark', 0.4)], maintenanceCost: [elemCost('earth', 0.5), elemCost('dark', 0.6)],
damage: 25, damage: 25,
attackSpeed: 0.8, attackSpeed: 0.8,
hp: 55, hp: 55,
@@ -86,12 +86,12 @@ export const HYBRID_GOLEMS: Record<string, GolemDef> = {
name: 'Prism Golem', name: 'Prism Golem',
description: 'A radiant crystal construct. Channels light into piercing beams.', description: 'A radiant crystal construct. Channels light into piercing beams.',
baseManaType: 'crystal', baseManaType: 'crystal',
summonCost: [elemCost('crystal', 10), elemCost('light', 6)], summonCost: [elemCost('crystal', 16), elemCost('light', 10)],
maintenanceCost: [elemCost('crystal', 0.4), elemCost('light', 0.4)], maintenanceCost: [elemCost('crystal', 0.6), elemCost('light', 0.6)],
damage: 20, damage: 28,
attackSpeed: 1.5, attackSpeed: 2.0,
hp: 50, hp: 60,
armorPierce: 0.35, armorPierce: 0.45,
isAoe: true, isAoe: true,
aoeTargets: 3, aoeTargets: 3,
unlockCondition: { unlockCondition: {
@@ -111,12 +111,12 @@ export const HYBRID_GOLEMS: Record<string, GolemDef> = {
name: 'Quicksilver Golem', name: 'Quicksilver Golem',
description: 'Liquid metal that flows around defenses. Fast and hard to dodge.', description: 'Liquid metal that flows around defenses. Fast and hard to dodge.',
baseManaType: 'metal', baseManaType: 'metal',
summonCost: [elemCost('metal', 6), elemCost('water', 6)], summonCost: [elemCost('metal', 10), elemCost('water', 8)],
maintenanceCost: [elemCost('metal', 0.3), elemCost('water', 0.3)], maintenanceCost: [elemCost('metal', 0.4), elemCost('water', 0.4)],
damage: 8, damage: 14,
attackSpeed: 4.0, attackSpeed: 4.0,
hp: 40, hp: 55,
armorPierce: 0.3, armorPierce: 0.35,
isAoe: false, isAoe: false,
aoeTargets: 1, aoeTargets: 1,
unlockCondition: { unlockCondition: {
@@ -136,8 +136,8 @@ export const HYBRID_GOLEMS: Record<string, GolemDef> = {
name: 'Voidstone Golem', name: 'Voidstone Golem',
description: 'Earth infused with void energy. The ultimate golem construct.', description: 'Earth infused with void energy. The ultimate golem construct.',
baseManaType: 'earth', baseManaType: 'earth',
summonCost: [elemCost('earth', 15), elemCost('void', 8)], summonCost: [elemCost('earth', 22), elemCost('void', 14)],
maintenanceCost: [elemCost('earth', 0.3), elemCost('void', 0.6)], maintenanceCost: [elemCost('earth', 0.5), elemCost('void', 0.9)],
damage: 40, damage: 40,
attackSpeed: 0.6, attackSpeed: 0.6,
hp: 100, hp: 100,