67 lines
3.1 KiB
JavaScript
67 lines
3.1 KiB
JavaScript
Array.prototype.random = function () {
|
|
return this[Math.floor((Math.random() * this.length))];
|
|
};
|
|
|
|
const alpha = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y',
|
|
'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
|
|
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
|
|
const whitespace = ['.', '~', '#', '!', '$', '+', '-', '+'];
|
|
const numbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
|
|
const left = ['Alabama', 'Alaska', 'Arizona', 'Maryland', 'Nevada', 'Mexico', 'Texas', 'Utah', 'Glasgow', 'Inverness', 'Edinburgh', 'Dumbarton',
|
|
'Balloch', 'Renton', 'Cardross', 'Dundee', 'Paisley',
|
|
'Hamilton', 'Greenock', 'Falkirk',
|
|
'Irvine',
|
|
'Renfrew',
|
|
'Erskine',
|
|
'London',
|
|
'Hammersmith',
|
|
'Islington',
|
|
'Silver', 'Black', 'Yellow', 'Purple', 'White', 'Pink', 'Red', 'Orange', 'Brown', 'Green', 'Blue', 'Amber', 'Aqua',
|
|
'Azure', 'Bronze', 'Coral', 'Copper', 'Crimson', 'Cyan', 'Ginger', 'Gold', 'Indigo', 'Jade', 'Ruby', 'Cedar', 'Cream', 'Peach', 'Sepcia',
|
|
|
|
'Mercyful', 'Cyber', 'Ultra', 'Hunter', 'Electric', 'Steel', 'Fire', 'Smoke', 'Thunder', 'Pewter', 'Stone', 'Iron', 'Shadow', 'Grey', 'Mocha',
|
|
'Wood', 'Space', 'Manic', 'Grunt', 'X-Ray', 'Sabbra'
|
|
|
|
];
|
|
|
|
const right = ['Aganju', 'Cygni', 'Akeron', 'Antares', 'Aragoth', 'Ardus', 'Carpenter', 'Cooper', 'Dahin', 'Capella', 'Endriago', 'Gallina',
|
|
'Fenris', 'Freya', 'Glenn', 'Grissom', 'Jotunheim', 'Kailaasa', 'Lagarto', 'Muspelheim', 'Nifleheim', 'Primus', 'Vega', 'Ragnarok', 'Shepard',
|
|
'Slayton', 'Tarsis', 'Mercury', 'Venus', 'Mars', 'Earth', 'Terra', 'Jupiter', 'Saturn', 'Uranus', 'Neptune', 'Pluto', 'Europa', 'Ganymede',
|
|
'Callisto', 'Titan', 'Juno', 'Eridanus', 'Scorpius', 'Crux', 'Cancer', 'Taurus', 'Lyra', 'Andromeda', 'Virgo', 'Aquarius', 'Cygnus', 'Corvus',
|
|
'Taurus', 'Draco', 'Perseus', 'Pegasus', 'Gemini', 'Columbia', 'Bootes', 'Orion', 'Deneb', 'Merope', 'Agate', 'Amber', 'Beryl', 'Calcite',
|
|
'Citrine', 'Coral', 'Diamond', 'Emerald', 'Garnet', 'Jade', 'Lapis', 'Moonstone', 'Obsidian', 'Onyx', 'Opal', 'Pearl', 'Quartz', 'Ruby',
|
|
'Sapphire', 'Topaz', 'Iron', 'Lead', 'Nickel', 'Copper', 'Zinc', 'Tin', 'Manes', 'Argon', 'Neon', 'Alpha', 'Bravo', 'Charlie', 'Delta',
|
|
'Echo', 'Foxtrot', 'Golf', 'Hotel', 'India', 'Juliett', 'Kilo', 'Lima', 'Mike', 'November', 'Oscar', 'Papa', 'Quebec', 'Romeo', 'Sierra',
|
|
'Tango', 'Uniform', 'Victor', 'Whisky', 'Xray', 'Yankee', 'Zulu', 'Fate', 'Miner', 'Blaster', 'Click', 'Noise', 'Cadabra', 'Shotgun'];
|
|
|
|
const numberCluster = function () {
|
|
return numbers.random() + numbers.random() + numbers.random();
|
|
};
|
|
|
|
const randomAmount = function (i) {
|
|
let str = '';
|
|
|
|
for (let t = 0; t < i; t++)
|
|
str = str + alpha.random();
|
|
|
|
return str;
|
|
};
|
|
|
|
module.exports = {
|
|
|
|
'generate': function () {
|
|
//const ws = whitespace.random();
|
|
const ws = '.';
|
|
const reply = {
|
|
|
|
'long': (`${left.random() } ${ right.random() } ${ numberCluster() }`).split(' ').join(ws),
|
|
'short': randomAmount(10)
|
|
};
|
|
|
|
reply.longLength = reply.long.length;
|
|
|
|
return reply;
|
|
}
|
|
|
|
};
|