feat: replace Metal Kite Shield with Metal Spell Focus offhand
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m31s
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m31s
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# Circular Dependencies
|
# Circular Dependencies
|
||||||
Generated: 2026-05-27T10:26:21.515Z
|
Generated: 2026-05-27T10:30:41.282Z
|
||||||
|
|
||||||
No circular dependencies found. ✅
|
No circular dependencies found. ✅
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"_meta": {
|
"_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.",
|
"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."
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -29,3 +29,15 @@ export const CATALYST_EQUIPMENT: Record<string, EquipmentType> = {
|
|||||||
description: 'A rare catalyst touched by void energy. High capacity but volatile.',
|
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 { ACCESSORIES_EQUIPMENT } from './accessories';
|
||||||
import { BODY_EQUIPMENT } from './body';
|
import { BODY_EQUIPMENT } from './body';
|
||||||
import { CASTER_EQUIPMENT } from './casters';
|
import { CASTER_EQUIPMENT } from './casters';
|
||||||
import { CATALYST_EQUIPMENT } from './catalysts';
|
import { CATALYST_EQUIPMENT, SPELL_FOCUS_EQUIPMENT } from './catalysts';
|
||||||
import { FEET_EQUIPMENT } from './feet';
|
import { FEET_EQUIPMENT } from './feet';
|
||||||
import { HANDS_EQUIPMENT } from './hands';
|
import { HANDS_EQUIPMENT } from './hands';
|
||||||
import { HEAD_EQUIPMENT } from './head';
|
import { HEAD_EQUIPMENT } from './head';
|
||||||
@@ -18,6 +18,7 @@ export const EQUIPMENT_TYPES = {
|
|||||||
...BODY_EQUIPMENT,
|
...BODY_EQUIPMENT,
|
||||||
...CASTER_EQUIPMENT,
|
...CASTER_EQUIPMENT,
|
||||||
...CATALYST_EQUIPMENT,
|
...CATALYST_EQUIPMENT,
|
||||||
|
...SPELL_FOCUS_EQUIPMENT,
|
||||||
...FEET_EQUIPMENT,
|
...FEET_EQUIPMENT,
|
||||||
...HANDS_EQUIPMENT,
|
...HANDS_EQUIPMENT,
|
||||||
...HEAD_EQUIPMENT,
|
...HEAD_EQUIPMENT,
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ export {
|
|||||||
export { ACCESSORIES_EQUIPMENT } from './accessories';
|
export { ACCESSORIES_EQUIPMENT } from './accessories';
|
||||||
export { BODY_EQUIPMENT } from './body';
|
export { BODY_EQUIPMENT } from './body';
|
||||||
export { CASTER_EQUIPMENT } from './casters';
|
export { CASTER_EQUIPMENT } from './casters';
|
||||||
export { CATALYST_EQUIPMENT } from './catalysts';
|
export { CATALYST_EQUIPMENT, SPELL_FOCUS_EQUIPMENT } from './catalysts';
|
||||||
export { FEET_EQUIPMENT } from './feet';
|
export { FEET_EQUIPMENT } from './feet';
|
||||||
export { HANDS_EQUIPMENT } from './hands';
|
export { HANDS_EQUIPMENT } from './hands';
|
||||||
export { HEAD_EQUIPMENT } from './head';
|
export { HEAD_EQUIPMENT } from './head';
|
||||||
|
|||||||
@@ -84,10 +84,10 @@ export const FABRICATOR_RECIPES: FabricatorRecipe[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'metalShield',
|
id: 'metalShield',
|
||||||
name: 'Metal Kite Shield',
|
name: 'Metal Spell Focus',
|
||||||
description: 'A polished metal shield. Reliable protection without excessive weight.',
|
description: 'A metal orb that amplifies spellcasting. Boosts enchantment power.',
|
||||||
manaType: 'metal',
|
manaType: 'metal',
|
||||||
equipmentTypeId: 'runicShield',
|
equipmentTypeId: 'metalSpellFocus',
|
||||||
slot: 'offHand',
|
slot: 'offHand',
|
||||||
materials: { manaCrystalDust: 7, arcaneShard: 4, elementalCore: 1 },
|
materials: { manaCrystalDust: 7, arcaneShard: 4, elementalCore: 1 },
|
||||||
manaCost: 450,
|
manaCost: 450,
|
||||||
|
|||||||
Reference in New Issue
Block a user