77 lines
1.8 KiB
JavaScript
77 lines
1.8 KiB
JavaScript
// 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;
|