You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
3.0 KiB
JavaScript
33 lines
3.0 KiB
JavaScript
var br = "";
|
|
|
|
function nameGen() {
|
|
var nm1 = ["Abolition", "Absolution", "Abyss", "Ache", "Acrimony", "Aeon", "Agony", "Amnesia", "Amnesty", "Anarchy", "Angst", "Anguish", "Animus", "Annex", "Annihilation", "Anthrax", "Antipathy", "Anxiety", "Ardor", "Aspect", "Ataxia", "Bane", "Barbarian", "Battleborn", "Benevolence", "Blight", "Blitz", "Bloodlust", "Boon", "Brimstone", "Brute", "Carnage", "Chagrin", "Chaos", "Clemency", "Command", "Conquest", "Contempt", "Corruption", "Coup", "Courage", "Crackle", "Darkness", "Dawn", "Daze", "Death", "Decay", "Decimation", "Demolition", "Desolation", "Despair", "Destruction", "Disarray", "Discipline", "Disgrace", "Dolor", "Doom", "Dread", "Dusk", "Eclipse", "Empathy", "Enmity", "Entropy", "Envy", "Epoch", "Eternity", "Evasion", "Extinction", "Famine", "Fear", "Feast", "Feral", "Ferocity", "Fire", "Flame", "Foul", "Furor", "Fury", "Ghost", "Gloom", "Gluttony", "Greed", "Grief", "Grim", "Grudge", "Harm", "Havoc", "Haze", "Infamy", "Injury", "Insanity", "Invincible", "Ire", "Jitters", "Judgment", "Justice", "Liberty", "Limbo", "Loathing", "Lust", "Maelstrom", "Malaise", "Malice", "Massacre", "Mayhem", "Melancholy", "Mercy", "Midnight", "Misery", "Mistake", "Mopes", "Mourn", "Murk", "Nightmare", "Nill", "Noxious", "Obliteration", "Oblivion", "Obscurity", "Occult", "Pandemonium", "Perdition", "Permanence", "Permanent", "Perpetuity", "Perseverance", "Pest", "Pestilence", "Phantom", "Piety", "Pique", "Pity", "Pride", "Punishment", "Punition", "Purgatory", "Putrid", "Rage", "Rancor", "Reaper", "Reason", "Redemption", "Requiem", "Retaliation", "Retribution", "Revenge", "Riot", "Rise", "Rot", "Ruin", "Sanity", "Savage", "Scourge", "Scythe", "Shadow", "Shambles", "Shame", "Shroud", "Silver", "Sin", "Sloth", "Smoke", "Sore", "Sorrow", "Spite", "Spoil", "Squalor", "Stigma", "Storm", "Stormrider", "Strife", "Sympathy", "Throe", "Thunder", "Torment", "Torture", "Triumph", "Turbulence", "Turmoil", "Twilight", "Twinge", "Umbrage", "Veil", "Vengeance", "Venom", "Vessel", "Vex", "Vicious", "Victory", "Vile", "Virus", "Vision", "Void", "War", "Whip", "Wicked", "Withering", "Woe", "Wrath", "Zeal"];
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
nTp = Math.random() * 50 | 0;
|
|
if (nTp === 0 && first !== 0 && triggered === 0) {
|
|
nTp = Math.random() * 5 | 0;
|
|
if (nTp === 0) {
|
|
creeper();
|
|
} else if (nTp < 3) {
|
|
herobrine();
|
|
} else {
|
|
enderman();
|
|
}
|
|
} else {
|
|
for (i = 0; i < 10; i++) {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
nMs = nm1[rnd];
|
|
nm1.splice(rnd, 1);
|
|
br = document.createElement('br');
|
|
element.appendChild(document.createTextNode(nMs));
|
|
element.appendChild(br);
|
|
}
|
|
first++;
|
|
if (document.getElementById("result")) {
|
|
document.getElementById("placeholder").removeChild(document.getElementById("result"));
|
|
}
|
|
document.getElementById("placeholder").appendChild(element);
|
|
}
|
|
}
|