burn: Add MemPalace Archive as late-game building (closes #25) #39

Merged
Timmy merged 1 commits from burn/20260410-0423-25-mempalace-building into main 2026-04-10 09:37:16 +00:00

11
game.js
View File

@@ -58,7 +58,8 @@ const G = {
ezra: 0,
timmy: 0,
fenrir: 0,
bilbo: 0
bilbo: 0,
memPalace: 0
},
// Boost multipliers
@@ -293,6 +294,14 @@ const BDEF = [
rates: { creativity: 1 },
unlock: () => G.totalUsers >= 100 && G.flags && G.flags.creativity, phase: 4,
edu: 'Bilbo is unpredictable. That is his value and his cost.'
},
{
id: 'memPalace', name: 'MemPalace Archive',
desc: 'Semantic memory. The AI remembers what matters and forgets what does not.',
baseCost: { knowledge: 500000, compute: 200000, trust: 100 }, costMult: 1.25,
rates: { knowledge: 250, impact: 100 },
unlock: () => G.totalKnowledge >= 50000 && G.mempalaceFlag === 1, phase: 5,
edu: 'The Memory Palace technique: attach information to spatial locations. LLMs use vector spaces the same way — semantic proximity = spatial proximity. MemPalace gives sovereign AI persistent, structured recall.'
}
];