⛧ THE DEATH QUIZ ⛧
› DO YOU FEAR DEATH? ‹
YES, I'M TERRIFIED
I FEAR IT, BUT HIDE IT
NO, IT'S JUST AN END
I AM DEATH ITSELF
› HOW DO YOU WANT TO DIE? ‹
PEACEFULLY IN MY SLEEP
FAST, FEEL NOTHING
VIOLENT, FEEL EVERYTHING
BY MY OWN HAND
› WHAT HAUNTS YOU THE MOST? ‹
REGRETS
LONELINESS
MY OWN REFLECTION
NOTHING. I AM THE HAUNT
⌇ YOUR ANSWERS WILL FIND YOU ⌇
⟳ RESURRECT
// Store answers
let answers = {
q1: null,
q2: null,
q3: null
};
// Death results based on combinations
function getDeathResult() {
const q1 = answers.q1;
const q2 = answers.q2;
const q3 = answers.q3;
if (!q1 || !q2 || !q3) return null;
// Fear + Violent + Reflection
if (q1 === 'fear1' && q2 === 'death3' && q3 === 'haunt3') {
return "YOU WILL DIE SCREAMING AT YOUR OWN FACE IN THE MIRROR. YOUR LAST SIGHT WILL BE YOURSELF, BLEEDING.";
}
// Fear + Peaceful + Regrets
if (q1 === 'fear1' && q2 === 'death1' && q3 === 'haunt1') {
return "DEATH WILL COME GENTLY, BUT YOUR REGRETS WILL EAT YOU ALIVE BEFORE IT ARRIVES. YOU'LL BEG FOR IT TO COME FASTER.";
}
// Fearless + Violent + Nothing
if (q1 === 'fear3' && q2 === 'death3' && q3 === 'haunt4') {
return "YOU WON'T DIE. YOU'LL JUST... STOP. AND SOMETHING ELSE WILL WEAR YOUR SKIN. YOU'LL WATCH FROM THE DARKNESS.";
}
// I am death + By my own hand + Nothing
if (q1 === 'fear4' && q2 === 'death4' && q3 === 'haunt4') {
return "YOU ARE ALREADY DEAD. THIS PROFILE IS YOUR GHOST. NO ONE WILL VISIT. NO ONE WILL REMEMBER.";
}
// Hide fear + Fast + Loneliness
if (q1 === 'fear2' && q2 === 'death2' && q3 === 'haunt2') {
return "DEATH WILL COME WHEN YOU LEAST EXPECT IT. ALONE. IN A ROOM FULL OF PEOPLE. NO ONE WILL NOTICE YOU'RE GONE FOR DAYS.";
}
// I am death + Peaceful + Regrets
if (q1 === 'fear4' && q2 === 'death1' && q3 === 'haunt1') {
return "YOU WILL OUTLIVE EVERYONE YOU LOVE. YOUR DEATH WILL BE A RELEASE. BUT THE REGRET WILL FOLLOW YOU BEYOND THE GRAVE.";
}
// Default scary result
return "DEATH IS ALREADY INSIDE YOU. IT'S BEEN THERE SINCE YOU OPENED THIS PAGE. CAN YOU FEEL IT? IT'S SMILING.";
}
function updateResult() {
const resultText = document.querySelector('#quizResult .result-text');
const resultDeath = document.querySelector('#quizResult .result-death');
const deathMsg = getDeathResult();
if (deathMsg) {
resultText.innerHTML = "⚰️ YOUR DEATH HAS BEEN WRITTEN ⚰️";
resultDeath.innerHTML = deathMsg;
resultDeath.style.animation = 'deathShake 0.5s ease';
setTimeout(() => { resultDeath.style.animation = ''; }, 500);
}
}
// Handle button clicks
document.querySelectorAll('.option-btn').forEach(btn => {
btn.addEventListener('click', function() {
const q = this.getAttribute('data-q');
const val = this.getAttribute('data-val');
if (q === '1') answers.q1 = val;
else if (q === '2') answers.q2 = val;
else if (q === '3') answers.q3 = val;
// Visual feedback - disable clicked group
const parentOptions = this.parentElement;
parentOptions.querySelectorAll('.option-btn').forEach(btn => {
btn.style.opacity = '0.5';
});
this.style.opacity = '1';
this.style.background = '#a22';
updateResult();
});
});
// Reset button
document.getElementById('resetQuiz').addEventListener('click', function() {
answers = { q1: null, q2: null, q3: null };
document.querySelectorAll('.option-btn').forEach(btn => {
btn.style.opacity = '1';
btn.style.background = 'rgba(30, 0, 0, 0.7)';
});
document.querySelector('#quizResult .result-text').innerHTML = "⚰️ ask again if you dare ⚰️";
document.querySelector('#quizResult .result-death').innerHTML = "";
});
Comments
Displaying 2 of 2 comments ( View all | Add Comment )
0c3an
Im not afraid of death itself and i never have been but im afraid somebody will steal my youth and i will die painfully young.
For how i die i dont care.
I only hope it will be gruesome.
Keerfloey
what's allat beneath