fix: Crystal-Steel Hybrid frame unlock now only requires Fabricator 5 (was incorrectly dual-gated with Enchanter 5)
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m20s

This commit is contained in:
2026-06-08 14:14:38 +02:00
parent 9200cf3ce0
commit a1b86d82c5
4 changed files with 9 additions and 9 deletions
@@ -98,11 +98,11 @@ describe('Unlock requirements', () => {
expect(isComponentUnlocked(req, { invoker: { active: true, level: 5 }, fabricator: { active: true, level: 5 } }, [], [])).toBe(false);
});
it('crystalSteelHybrid frame requires Fabricator 5 + Enchanter 5', () => {
it('crystalSteelHybrid frame requires Fabricator 5 only', () => {
const req = FRAMES.crystalSteelHybrid.unlockRequirement;
expect(req.type).toBe('dual_attunement');
expect(isComponentUnlocked(req, { fabricator: { active: true, level: 5 }, enchanter: { active: true, level: 5 } }, [], [])).toBe(true);
expect(isComponentUnlocked(req, { fabricator: { active: true, level: 5 }, enchanter: { active: true, level: 4 } }, [], [])).toBe(false);
expect(req.type).toBe('attunement_level');
expect(isComponentUnlocked(req, { fabricator: { active: true, level: 5 } }, [], [])).toBe(true);
expect(isComponentUnlocked(req, { fabricator: { active: true, level: 4 } }, [], [])).toBe(false);
});
it('sand frame requires sand mana unlocked', () => {