Initial commit — Meridian OS browser desktop demo

This commit is contained in:
2026-04-19 23:18:55 +00:00
commit 8e30dd3597
30 changed files with 6277 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
// Achievement definitions for Meridian OS
const catalog = [
{
id: 'first_grace',
title: 'First Grace',
desc: 'Welcome to the Lands Between.',
game: 'ER',
trigger: { event: 'user:login' }
},
{
id: 'getting_tactical',
title: 'Getting Tactical',
desc: 'Run 5 terminal commands.',
game: 'CoD',
trigger: { event: 'term:cmd', count: 5 }
},
{
id: 'career_mode',
title: 'Career Mode',
desc: 'Open 3 different apps.',
game: 'FIFA',
trigger: { event: 'app:open', uniqueField: 'app', count: 3 }
},
{
id: 'tarnished_typist',
title: 'Tarnished Typist',
desc: 'Type 500 characters in Notepad.',
game: 'ER',
trigger: { event: 'text:typed', accumulate: 'chars', threshold: 500 }
},
{
id: 'dj',
title: 'DJ',
desc: 'Play music for 30 seconds.',
game: 'CoD',
trigger: { event: 'music:played', accumulate: 'seconds', threshold: 30 }
},
{
id: 'speedrun',
title: 'Speedrun',
desc: 'Open and close a window in under 2 seconds.',
game: 'FIFA',
trigger: { custom: 'speedrun' }
},
{
id: 'dataminer',
title: 'Dataminer',
desc: 'Discover 3 hidden terminal commands.',
game: 'ER',
trigger: { event: 'easter:found', count: 3, unique: true }
},
{
id: 'grace_bestowed',
title: 'Touched by Grace',
desc: 'Praise the Sun.',
game: 'ER',
trigger: { event: 'easter:found', id: 'er_grace' }
},
{
id: 'siuuu_master',
title: 'SIUUU Master',
desc: 'Celebrate in the terminal.',
game: 'FIFA',
trigger: { event: 'easter:found', id: 'er_siuuu' }
},
{
id: 'cheater',
title: 'Cheat Code Activated',
desc: 'Enter the Konami code.',
game: 'CoD',
trigger: { event: 'easter:found', id: 'er_konami' }
}
];
export default catalog;