Task 2 progress: Remove Transference from LootTab essence list, delete Ascension skills
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m41s

This commit is contained in:
Refactoring Agent
2026-04-25 19:09:40 +02:00
parent e9bf5a99f8
commit 65b0f961e5
3 changed files with 2 additions and 11 deletions
-5
View File
@@ -104,10 +104,6 @@ export const SKILLS_DEF: Record<string, SkillDef> = {
deepTrance: { name: "Deep Trance", desc: "Extend meditation bonus to 6hrs for 3x", cat: "research", max: 1, base: 900, studyTime: 48, req: { meditation: 1 } },
voidMeditation:{ name: "Void Meditation", desc: "Extend meditation bonus to 8hrs for 5x", cat: "research", max: 1, base: 1500, studyTime: 72, req: { deepTrance: 1 } },
// Ascension Skills (very long study, powerful effects) - Require any attunement level 5+
insightHarvest: { name: "Insight Harvest", desc: "+10% insight gain", cat: "ascension", max: 5, base: 1000, studyTime: 20, attunementReq: { enchanter: 1 } },
guardianBane: { name: "Guardian Bane", desc: "+20% dmg vs guardians", cat: "ascension", max: 3, base: 1500, studyTime: 30, attunementReq: { invoker: 1 } },
// ═══════════════════════════════════════════════════════════════════════════
// INVOKER SKILLS - Require Invoker attunement
// ═══════════════════════════════════════════════════════════════════════════
@@ -194,7 +190,6 @@ export const SKILL_CATEGORIES = [
{ id: 'mana', name: 'Mana', icon: '💧', attunement: null },
{ id: 'study', name: 'Study', icon: '📚', attunement: null },
{ id: 'research', name: 'Research', icon: '🔮', attunement: null },
{ id: 'ascension', name: 'Ascension', icon: '⭐', attunement: null },
// Enchanter attunement (Right Hand)
{ id: 'enchant', name: 'Enchanting', icon: '✨', attunement: 'enchanter' },
-5
View File
@@ -1,5 +0,0 @@
// ─── Game Utilities - Re-export from focused modules ───────────────────────
// This file is kept for backward compatibility
// All utilities have been moved to focused modules in the utils/ directory
export * from './utils';