Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new pet names #287

Merged
merged 4 commits into from
Oct 25, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 116 additions & 0 deletions media/main-bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,16 @@ exports.CAT_NAMES = new Map([
[107, 'Riley'],
[108, 'Lenny'],
[109, 'Mango'],
[110, 'Alex'],
[111, 'Boo'],
[112, 'Botas'],
[113, 'Romeo'],
[114, 'Bob'],
[115, 'Clyde'],
[116, 'Simon'],
[117, 'Mimmo'],
[118, 'Carlotta'],
[119, 'Felix'],
]);
exports.DOG_NAMES = new Map([
[1, 'Bella'],
Expand Down Expand Up @@ -225,10 +235,39 @@ exports.DOG_NAMES = new Map([
[101, 'Ghost'],
[102, 'Midnight'],
[103, 'Pumpkin'],
[104, 'James']
[105, 'Shadow'],
[106, 'Sparky'],
[107, 'Linus'],
[108, 'Cody'],
[109, 'Slinky'],
[110, 'Toto'],
[111, 'Balto'],
[112, 'Golfo'],
[113, 'Pongo'],
[114, 'Beethoven'],
[115, 'Hachiko'],
[116, 'Scooby'],
[117, 'Clifford'],
[118, 'Astro'],
[119, 'Goofy'],
[120, 'Chip'],
[121, 'Einstein'],
[122, 'Fang'],
[123, 'Truman'],
[124, 'Uggie'],
[125, 'Bingo'],
[126, 'Blue'],
[127, 'Cometa'],
[128, 'Krypto'],
[129, 'Huesos'],
[130, 'Odie'],
[131, 'Snoopy'],
[132, 'Aisha'],
[133, 'Moly'],
[134, 'Chiquita'],
[135, 'Chavela'],
[136, 'Puddles'],
]);
exports.CRAB_NAMES = new Map([
[1, 'Ferris'],
Expand Down Expand Up @@ -291,6 +330,21 @@ exports.SNAKE_NAMES = new Map([
[8, 'Bailey'],
[9, 'Max'],
[10, 'Seb'],
[11, 'Mr Hiss'],
[12, 'Miss Hiss'],
[13, 'Snaku'],
[14, 'Kaa'],
[15, 'Madame Snake'],
[16, 'Sir Hiss'],
[17, 'Loki'],
[18, 'Steelix'],
[19, 'Gyarados'],
[20, 'Seviper'],
[21, 'Ekanes'],
[22, 'Arbok'],
[23, 'Snivy'],
[24, 'Servine'],
[25, 'Serperior'],
]);
exports.DUCK_NAMES = new Map([
[1, 'Quacky'],
Expand All @@ -309,6 +363,33 @@ exports.DUCK_NAMES = new Map([
[14, 'Quackers'],
[15, 'Jelly Beans'],
[16, 'Donald'],
[17, 'Chady'],
[18, 'Waddles'],
[19, 'Bill'],
[20, 'Bubbles'],
[21, 'James Pond'],
[22, 'Moby Duck'],
[23, 'Quack Sparrow'],
[24, 'Peanut'],
[25, 'Psyduck'],
[26, 'Waddles'],
[27, 'Mr Quack'],
[28, 'Louie'],
[29, 'Golduck'],
[30, 'Daisy'],
[31, 'Pickles'],
[32, 'Ducky Duck'],
[33, 'Mrs Fluffs'],
[34, 'Squeek'],
[35, 'Ace'],
[36, 'Rubberduck'],
[37, 'Mrs Beak'],
[38, 'April'],
[39, 'Tutu'],
[40, 'Billy the duck'],
[41, 'Ducky'],
[42, 'Neco'],
[43, 'Dodo'],
]);
exports.ZAPPY_NAMES = new Map([
[1, 'Zappy'],
Expand All @@ -322,6 +403,12 @@ exports.ZAPPY_NAMES = new Map([
[9, 'The Flash'],
[10, 'Thor'],
[11, 'Electric Bolt'],
[12, 'Azula'],
[13, 'Lightning Bolt'],
[14, 'Power'],
[15, 'Sonic'],
[16, 'Speedy'],
[17, 'Rush'],
]);
exports.ROCKY_NAMES = new Map([
[1, 'Rocky'],
Expand All @@ -337,6 +424,16 @@ exports.ROCKY_NAMES = new Map([
[11, 'Pebble'],
[12, 'Rocksanne'],
[13, 'Rockstar'],
[14, 'Onix'],
[15, 'Rock and Roll'],
[16, 'Dolomite'],
[17, 'Granite'],
[18, 'Miss Marble'],
[19, 'Rock On'],
[20, 'Amberstone'],
[21, 'Rock With Me'],
[22, 'Rock On It'],
[23, 'Rock Out'],
]);
exports.COCKATIEL_NAMES = new Map([
[1, 'Cocktail'],
Expand All @@ -353,6 +450,25 @@ exports.COCKATIEL_NAMES = new Map([
[12, 'Baquack Obama'],
[13, 'Dame Judi Finch'],
[14, 'Kanye Nest'],
[15, 'Speck'],
[16, 'Cheecky'],
[17, 'Arthur'],
[18, 'Paco'],
[19, 'Bobo'],
[20, 'Walt'],
[21, 'Happy'],
[22, 'Junior'],
[23, 'Coco'],
[24, 'Yoyo'],
[25, 'Milo'],
[26, 'Skipper'],
[27, 'Scarlet'],
[28, 'Diva'],
[29, 'Ursula'],
[30, 'Donna'],
[31, 'Lola'],
[32, 'Kiko'],
[33, 'Luna'],
]);
function randomName(type) {
var collection;
Expand Down
69 changes: 69 additions & 0 deletions src/common/names.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ export const DOG_NAMES: ReadonlyArray<string> = [
'Moly',
'Chiquita',
'Chavela',
'Puddles',
];

export const CRAB_NAMES: ReadonlyArray<string> = [
Expand Down Expand Up @@ -322,6 +323,21 @@ export const SNAKE_NAMES: ReadonlyArray<string> = [
'Bailey',
'Max',
'Seb',
'Mr Hiss',
'Miss Hiss',
'Snaku',
'Kaa',
'Madame Snake',
'Sir Hiss',
'Loki',
'Steelix',
'Gyarados',
'Seviper',
'Ekanes',
'Arbok',
'Snivy',
'Servine',
'Serperior',
];

export const DUCK_NAMES: ReadonlyArray<string> = [
Expand Down Expand Up @@ -349,6 +365,24 @@ export const DUCK_NAMES: ReadonlyArray<string> = [
'Moby Duck',
'Quack Sparrow',
'Peanut',
'Psyduck',
'Mr Quack',
'Louie',
'Golduck',
'Daisy',
'Pickles',
'Ducky Duck',
'Mrs Fluffs',
'Squeek',
'Ace',
'Rubberduck',
'Mrs Beak',
'April',
'Tutu',
'Billy the duck',
'Ducky',
'Neco',
'Dodo',
];

export const ZAPPY_NAMES: ReadonlyArray<string> = [
Expand All @@ -363,6 +397,12 @@ export const ZAPPY_NAMES: ReadonlyArray<string> = [
'The Flash',
'Thor',
'Electric Bolt',
'Azula',
'Lightning Bolt',
'Power',
'Sonic',
'Speedy',
'Rush',
];

export const ROCKY_NAMES: ReadonlyArray<string> = [
Expand All @@ -379,6 +419,16 @@ export const ROCKY_NAMES: ReadonlyArray<string> = [
'Pebble',
'Rocksanne',
'Rockstar',
'Onix',
'Rock and Roll',
'Dolomite',
'Granite',
'Miss Marble',
'Rock On',
'Amberstone',
'Rock With Me',
'Rock On It',
'Rock Out',
];

export const COCKATIEL_NAMES: ReadonlyArray<string> = [
Expand All @@ -396,6 +446,25 @@ export const COCKATIEL_NAMES: ReadonlyArray<string> = [
'Baquack Obama',
'Dame Judi Finch',
'Kanye Nest',
'Speck',
'Cheecky',
'Arthur',
'Paco',
'Bobo',
'Walt',
'Happy',
'Junior',
'Coco',
'Yoyo',
'Milo',
'Skipper',
'Scarlet',
'Diva',
'Ursula',
'Donna',
'Lola',
'Kiko',
'Luna',
];

export function randomName(type: PetType): string {
Expand Down