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

Add new pet names #236

Merged
merged 3 commits into from
Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions src/common/names.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ export const CRAB_NAMES: Map<number, string> = new Map<number, string>([
[11, 'Crabito'],
[12, 'Percy'],
[13, 'Rocky'],
[14, 'Mr. Krabs'],
]);

export const CLIPPY_NAMES: Map<number, string> = new Map<number, string>([
Expand Down Expand Up @@ -271,6 +272,7 @@ export const SNAKE_NAMES: Map<number, string> = new Map<number, string>([
[7, 'Ruby'],
[8, 'Bailey'],
[9, 'Max'],
[10, 'Seb'],
]);

export const DUCK_NAMES: Map<number, string> = new Map<number, string>([
Expand All @@ -289,6 +291,7 @@ export const DUCK_NAMES: Map<number, string> = new Map<number, string>([
[13, 'Peaches'],
[14, 'Quackers'],
[15, 'Jelly Beans'],
[16, 'Donald'],
]);

export const ZAPPY_NAMES: Map<number, string> = new Map<number, string>([
Expand Down
1 change: 0 additions & 1 deletion src/panel/pets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,6 @@ export class Dog extends BasePetType {
return '🐶';
}
hello(): string {
// TODO: #186 Add a custom message for dog
return ` Every dog has its day - and today is woof day! Today I just want to bark. Take me on a walk`;
}
}
Expand Down