Skip to content

Commit

Permalink
Add halloween themed cat and dog names
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnspears committed Oct 9, 2022
1 parent 6cf6a8d commit 8ed7cb9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/common/names.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ export const CAT_NAMES: Map<number, string> = new Map<number, string>([
[98, 'Daisy'],
[99, 'Amelia'],
[100, 'Oliver'],
[101, 'Ghost'],
[102, 'Midnight'],
[103, 'Pumpkin'],
[105, 'Shadow'],
[106, 'Binx'],
]);

export const DOG_NAMES: Map<number, string> = new Map<number, string>([
Expand Down Expand Up @@ -204,6 +209,11 @@ export const DOG_NAMES: Map<number, string> = new Map<number, string>([
[98, 'Bolt'],
[99, 'Ein'],
[100, 'Maddy'],
[101, 'Ghost'],
[102, 'Midnight'],
[103, 'Pumpkin'],
[105, 'Shadow'],
[106, 'Sparky'],
]);

export const CRAB_NAMES: Map<number, string> = new Map<number, string>([
Expand Down

1 comment on commit 8ed7cb9

@ccjmne
Copy link
Contributor

@ccjmne ccjmne commented on 8ed7cb9 Oct 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Both additions are skipping over the id 104.
I'll fix this though, by resolving #161 πŸ‘Œ

Please sign in to comment.