mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Branding and lightbar changes
This commit is contained in:
parent
39257f33ae
commit
82c0201b91
7 changed files with 42 additions and 3 deletions
BIN
public/lightbar-images/coin.png
Normal file
BIN
public/lightbar-images/coin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
public/lightbar-images/money-sack.png
Normal file
BIN
public/lightbar-images/money-sack.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
BIN
public/lightbar-images/money.png
Normal file
BIN
public/lightbar-images/money.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
public/lightbar-images/ship.png
Normal file
BIN
public/lightbar-images/ship.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.8 KiB |
BIN
public/lightbar-images/skull.png
Normal file
BIN
public/lightbar-images/skull.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
|
@ -134,19 +134,22 @@
|
|||
"default": "What would you like to watch this afternoon?",
|
||||
"extra": ["Have you seen Blazing Saddles?"],
|
||||
"extra": ["Welcome to Sudo-Flix!"],
|
||||
"extra": [" /ᐠ>ヮ<ᐟ\\ฅ"]
|
||||
"extra": [" /ᐠ>ヮ<ᐟ\\ฅ"],
|
||||
"extra": ["Viva la sudo-flix!"]
|
||||
},
|
||||
"morning": {
|
||||
"default": "What would you like to watch this morning?",
|
||||
"extra": ["Can't go wrong with Friends"],
|
||||
"extra": ["I hear The Expanse is popular"],
|
||||
"extra": ["\"૮₍ ˶•⤙•˶ ₎ა"]
|
||||
"extra": ["\"૮₍ ˶•⤙•˶ ₎ა"],
|
||||
"extra": ["Viva la sudo-flix!"]
|
||||
},
|
||||
"night": {
|
||||
"default": "What would you like to watch tonight?",
|
||||
"extra": ["Rick & Morty is great with friends!"],
|
||||
"extra": ["Go smoke and watch The Simpsons!"],
|
||||
"extra": ["(づ ᴗ _ᴗ)づ♡"]
|
||||
"extra": ["(づ ᴗ _ᴗ)づ♡"],
|
||||
"extra": ["Viva la sudo-flix!"]
|
||||
},
|
||||
"420": {
|
||||
"default": "What would you like to watch this 4/20?",
|
||||
|
|
|
@ -267,6 +267,42 @@ function ParticlesCanvas() {
|
|||
imageParticleCount = particleCount / 9;
|
||||
}
|
||||
|
||||
// Money easter egg
|
||||
const shouldShowMoney = Math.random() < 0.06; // 6%
|
||||
if (shouldShowMoney) {
|
||||
imageOverride = [
|
||||
{
|
||||
image: "/lightbar-images/money-sack.png",
|
||||
sizeRange: [24, 32] as [number, number],
|
||||
},
|
||||
{
|
||||
image: "/lightbar-images/money.png",
|
||||
sizeRange: [13, 23] as [number, number],
|
||||
},
|
||||
{
|
||||
image: "/lightbar-images/coin.png",
|
||||
sizeRange: [8, 20] as [number, number],
|
||||
},
|
||||
];
|
||||
imageParticleCount = particleCount / 8.45;
|
||||
}
|
||||
|
||||
// Pirate easter egg
|
||||
const shouldShowPirate = Math.random() < 0.9; // 3%
|
||||
if (shouldShowPirate) {
|
||||
imageOverride = [
|
||||
{
|
||||
image: "/lightbar-images/skull.png",
|
||||
sizeRange: [20, 28] as [number, number],
|
||||
},
|
||||
{
|
||||
image: "/lightbar-images/ship.png",
|
||||
sizeRange: [23, 27] as [number, number],
|
||||
},
|
||||
];
|
||||
imageParticleCount = particleCount / 10;
|
||||
}
|
||||
|
||||
// Dev easter egg
|
||||
const shouldShowCode = Math.random() < 0.03; // 3%
|
||||
if (shouldShowCode) {
|
||||
|
|
Loading…
Reference in a new issue