addded ratmsic

This commit is contained in:
Arjun S
2025-08-04 06:57:41 +00:00
parent 23dbb9415c
commit cd2f49af9a
5 changed files with 123 additions and 25 deletions

View File

@@ -15,6 +15,7 @@ export interface Upgrade {
mascotTiers?: MascotTier[];
oneTime?: boolean;
newsTitles?: string[];
youtubeId?: string;
}
export interface MascotTier {
@@ -191,6 +192,16 @@ const UPGRADES: Upgrade[] = [
`om`,
`You are the Glue to my life like how Tokai Teio is glue(stick) to a child's art project`,
]
},
{
id: 'secretVideo',
name: '🎬 Secret Video',
description: 'Unlock a secret video. Plays automatically!',
baseCost: 1000000, // Very expensive
multiplier: 1,
icon: '🎬',
oneTime: true,
youtubeId: 'ONzntmMFXGE' // The YouTube video ID
}
];