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.

19 lines
5.5 KiB
JavaScript

function nameGen() {
var nm1 = ["A Little Too Heavy", "A Little Too Light", "Absurd Drifter", "Absurd Floater", "Absurd Plunger", "Absurd Sinker", "Adapted With Ease", "Adeqautely Buoyant", "Adjusted With Ease", "Airier Than Most", "Altered With Ease", "Ascents Quickly", "Awfully Airy", "Awfully Light", "Balanced With Ease", "Barely Floats", "Barely Hangs", "Barely Hovers", "Barely Off The Ground", "Bothersome Balance", "Bothersome Floater", "Bounces Around", "Bulkier Than Most", "Bumpy Drifter", "Bumpy Floater", "Calmly Drifts", "Calmly Floats", "Common Sinker", "Commonly Crashes", "Constantly Ascends", "Constantly Sinks", "Crashes Continuously", "Crashes Often", "Dainty Floater", "Dainty Lift", "Delicately Adapted", "Delicately Balanced", "Delicately Floats", "Delicately Sinks", "Demanding Adjustments", "Demanding To Alter", "Descends Over Time", "Descends Quickly", "Difficult Balance", "Difficult Equalization", "Difficult To Adapt", "Difficult To Balance", "Difficult To Lift", "Difficulties Rising", "Dives Quickly", "Doesn'T Lift", "Doesn'T Rise", "Doubtful Floater", "Doubtful Riser", "Drift Around", "Drifts Around", "Drifts Away Over Time", "Drifts Backwards", "Drifts With The Wind", "Drops A Lot", "Drops Like A Brick", "Drops Like A Star", "Drops Quickly", "Dwindles Over Time", "Easily Adjusted", "Easily Altered", "Easily Equalized", "Easily In The Air", "Easily Inflated", "Easily Regulated", "Easy To Adapt", "Easy To Balance", "Easy To Descent", "Easy To Sink", "Effortless Glide", "Effortlessly Drifts", "Effortlessly Floats", "Effortlessly Rises", "Eternal Floater", "Eternal Sinker", "Evened With Ease", "Excessively Bulky", "Excessively Heavy", "Exorbitantly Airy", "Exorbitantly Bulky", "Exorbitantly Heavy", "Exorbitantly Light", "Extremely Feathery", "Extremely Light", "Falls Like A Star", "Far Too Airy", "Far Too Dense", "Far Too Heavy", "Far Too Light", "Feathery Than Some", "Finely Attuned", "Finely Balanced", "Floated With Ease", "Floats Freely", "Floats Steadily", "Floats Too Quickly", "Floats With Ease", "Gently Adapted", "Gently Adjusted", "Gently Floats", "Gently Lifts", "Gently Rises", "Gently Sinks", "Glides Around", "Glides Freely", "Glides Sideways", "Glides To One Side", "Glides With Ease", "Gone With The Wind", "Gradually Lifts", "Gradually Sinks", "Hangs To The Front", "Hard To Adjust", "Hard To Balance", "Heavier Than Average", "Heavier Than Most", "Heavier Than Some", "Hovers With Ease", "Idle Drifter", "Idle Floater", "Immensely Bulky", "Immensely Heavy", "Inclined To Decline", "Inclined To Sink", "Inconceivable Drifter", "Inconceivable Sinker", "Increasingly Ascends", "Increasingly Wanders", "Incredible Floater", "Incredible Glider", "Incredible Rises", "Incredible Sinker", "Intricate Adjustments", "Intricate Alterations", "Intricate Balance", "Intricate Measurements", "Just Keeps Sinking", "Just Meanders", "Keeps Drifting", "Keeps Rising", "Labored Alterations", "Labored Lift", "Laborious Adjustments", "Laborious Alterations", "Lead-Footed", "Lifts Gradually", "Lifts In Small Doses", "Lifts With Difficulties", "Lifts With Ease", "Lighter Than Average", "Lighter Than Most", "Lightly Adjusted", "Lightly Altered", "Likely To Glide", "Likely To Sink", "Lingers Above", "Lingers Below", "May Crash", "May Plummet", "Moderately Ascends", "Moderately Descends", "Moderately Floats", "Moderately Sinks", "Never Floats Right", "Never Glides Well", "Never Sinks", "Never Stops Sinking", "Often Crashes", "Often Drifts Off", "Often Plummets", "Often Sinks", "Overly Airy", "Overly Dense", "Overly Heavy", "Overly Light", "Plummets A Lot", "Plunges Fast", "Predisposed To Float", "Predisposed To Glide", "Predisposed To Plummet", "Predisposed To Sink", "Prone To Plummet", "Prone To Sink", "Quickly Balanced", "Quickly Tailored", "Quite Airy", "Quite Hefty", "Regular Crasher", "Regular Drifter", "Regular Riser", "Regular Sinker", "Remarkably Floaty", "Remarkably Light", "Rough Adjustment", "Rough Alterations", "Sensitive To Winds", "Severely Dense", "Severely Light", "Sinks A Lot", "Sinks Continuously", "Sinks Fast", "Sinks Gradually", "Sinks In Small Doses", "Sinks Like A Brick", "Sinks Often", "Sinks Over Time", "Sinks Steadily", "Sinks To The Back", "Sinks To The Front", "Sinks Too Quickly", "Slight Drifter", "Slight Sinker", "Slowly Descends", "Slowly Rises", "Smooth Sailing", "Smoothly Altered", "Smoothly Fine-Tuned", "Strangely Plummets", "Strangely Sinks", "Strenuous Adjustments", "Strenuous Alterations", "Struggles To Float", "Struggles To Rise", "Subject To Sinking", "Sufficiently Buoyant", "Tendencies To Plummet", "Tendencies To Plunge", "Terrible Balance", "Terrible Lift", "Tilts Sidewards", "Tilts To One Side", "Tiring Adjustment", "Tiring Alterations", "Troublesome Balance", "Troublesome Floater", "Troublesome Plummet", "Troublesome Sinker", "Tumbles A Lot", "Unhurriedly Floats", "Unhurriedly Sinks", "Unlikely To Balance", "Unlikely To Crash", "Unlikely To Float", "Unlikely To Sink", "Very Dense", "Very Heavy"];
var br = "";
var element = document.createElement("div");
element.setAttribute("id", "result");
for (i = 0; i < 10; i++) {
rnd = Math.floor(Math.random() * nm1.length);
names = nm1[rnd];
nm1.splice(rnd, 1);
br = document.createElement('br');
element.appendChild(document.createTextNode(names));
element.appendChild(br);
}
if (document.getElementById("result")) {
document.getElementById("placeholder").removeChild(document.getElementById("result"));
}
document.getElementById("placeholder").appendChild(element);
}