feat: replace Metal Kite Shield with Metal Spell Focus offhand
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m31s

This commit is contained in:
2026-05-27 12:39:55 +02:00
parent 5f46948568
commit 2c88d3c395
6 changed files with 20 additions and 7 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# Circular Dependencies
Generated: 2026-05-27T10:26:21.515Z
Generated: 2026-05-27T10:30:41.282Z
No circular dependencies found. ✅
+1 -1
View File
@@ -1,6 +1,6 @@
{
"_meta": {
"generated": "2026-05-27T10:26:19.655Z",
"generated": "2026-05-27T10:30:39.543Z",
"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."
},
+12
View File
@@ -29,3 +29,15 @@ export const CATALYST_EQUIPMENT: Record<string, EquipmentType> = {
description: 'A rare catalyst touched by void energy. High capacity but volatile.',
},
};
// ─── Off Hand - Spell Foci ──────────────────────────────────────────
export const SPELL_FOCUS_EQUIPMENT: Record<string, EquipmentType> = {
metalSpellFocus: {
id: 'metalSpellFocus',
name: 'Metal Spell Focus',
category: 'catalyst',
slot: 'offHand',
baseCapacity: 50,
description: 'A metal orb that amplifies spellcasting. Boosts enchantment power.',
},
};
@@ -6,7 +6,7 @@
import { ACCESSORIES_EQUIPMENT } from './accessories';
import { BODY_EQUIPMENT } from './body';
import { CASTER_EQUIPMENT } from './casters';
import { CATALYST_EQUIPMENT } from './catalysts';
import { CATALYST_EQUIPMENT, SPELL_FOCUS_EQUIPMENT } from './catalysts';
import { FEET_EQUIPMENT } from './feet';
import { HANDS_EQUIPMENT } from './hands';
import { HEAD_EQUIPMENT } from './head';
@@ -18,6 +18,7 @@ export const EQUIPMENT_TYPES = {
...BODY_EQUIPMENT,
...CASTER_EQUIPMENT,
...CATALYST_EQUIPMENT,
...SPELL_FOCUS_EQUIPMENT,
...FEET_EQUIPMENT,
...HANDS_EQUIPMENT,
...HEAD_EQUIPMENT,
+1 -1
View File
@@ -31,7 +31,7 @@ export {
export { ACCESSORIES_EQUIPMENT } from './accessories';
export { BODY_EQUIPMENT } from './body';
export { CASTER_EQUIPMENT } from './casters';
export { CATALYST_EQUIPMENT } from './catalysts';
export { CATALYST_EQUIPMENT, SPELL_FOCUS_EQUIPMENT } from './catalysts';
export { FEET_EQUIPMENT } from './feet';
export { HANDS_EQUIPMENT } from './hands';
export { HEAD_EQUIPMENT } from './head';
+3 -3
View File
@@ -84,10 +84,10 @@ export const FABRICATOR_RECIPES: FabricatorRecipe[] = [
},
{
id: 'metalShield',
name: 'Metal Kite Shield',
description: 'A polished metal shield. Reliable protection without excessive weight.',
name: 'Metal Spell Focus',
description: 'A metal orb that amplifies spellcasting. Boosts enchantment power.',
manaType: 'metal',
equipmentTypeId: 'runicShield',
equipmentTypeId: 'metalSpellFocus',
slot: 'offHand',
materials: { manaCrystalDust: 7, arcaneShard: 4, elementalCore: 1 },
manaCost: 450,