-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathween.html
131 lines (129 loc) · 4.47 KB
/
ween.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Refresh Wheel</title>
</head>
<body>
<h1 style="color: #fff;">Hello chat, I am just here to refresh the speen. Ignore me!</h1>
<script>
const prizes = [
"Halloween",
"Bats",
"Spiders",
"Scary",
"Dracula",
"Frankenstein",
"Nighttime",
"Blood",
"Mummies",
"Witches",
"Death",
"Monsters",
"Werewolf",
"Ghosts",
"Trick or Treat",
"Skeletons",
"Vampire",
"Zombies (no Cranberries)",
"Candles",
"Graveyard",
"Black Cats",
"Crows (no Black or Counting Crows)",
"Devil",
"Haunted House",
"Candy",
"Mystery",
"Pumpkins",
"Morticia",
"Costumes",
"Magic",
"Moonlight (no dancing by the moonlight)",
"Morbid",
"Evil",
"Scary Clowns",
"Coffin",
"Darkness",
"Demons",
"Grim Reaper",
"After Life",
"Creepy",
"Car in the clip (no rap video)",
"Acoustic (no MTV Unplugged at all)",
"Ambitious project",
"6am drugged out nightclub vibes",
"Nobody knows this song, but I like it",
"A song you currently love",
"Questionable at best",
"Walking on the street and a car drives by playing loud music ahhh songs",
"Clothing store music", // thanks raiko
"Spanish / Portugese / Latin",
"Go HARD",
"Cats", // thnx maka
"Your last saved song",
"Beach vibes",
"Music to get absolutely shitfaced drunk on",
"Everybody loves tits",
"Everybody loves good booty",
"Talented and gorgeous",
"Bad artist, good song",
"A song dedicated to Jasper",
"Any fucking loud banger",
"Song from when you were growing up",
"Getting kicked out of class at primary school vibes",
"Telling your boss to go fuck himself vibes",
"1950s and older", // thanks GPU
"Driving in a car",
"The song that should play when you're being awesome in an online game",
"Annoy everyone on the bus with your bt speaker and this song",
"Electronic Music",
"Fast as fuck boiiii",
"The new generation can't appreciate this art",
"Stuck in traffic jam on Monday 6pm vibes",
"The best version of a song by anybody, anywhere",
"Mashup",
"That forgotten song",
"Female singer",
"Friday after work",
"Get-shit-done song",
"Coffee / tea time",
"This tune is fucking stoned man",
"This tune makes me think about somebody",
"House / Dance music",
"Oh shit, the robots are taking over!!",
"Music from / used in a movie",
"Music to organically reproduce to",
"My favourite decade of music in a song",
"Today 10 years ago !10y",
"One hit wonder !1hw",
"Reggae",
"Remix",
"Sunday Night Song",
"An alien visits you and requests to hear a song from earth",
"2000-now",
"The ol' 60s & 70s",
"Glamorous 80s",
"So incredibly 90s",
"The feels",
"Rent-free in my head",
"Recognisable intro", // thanks dutchfella
"Not heard of anymore",
"Not sure if male, female or lizard",
"You decide!"
];
// Function to shuffle the array
function shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
return array;
}
const randomizedPrizes = shuffleArray(prizes);
//console.log(randomizedPrizes);
localStorage.setItem('wheelResults', JSON.stringify(randomizedPrizes));
</script>
</body>
</html>