diff --git a/src/common/names.ts b/src/common/names.ts index fd13d042..85a04e4a 100644 --- a/src/common/names.ts +++ b/src/common/names.ts @@ -232,6 +232,7 @@ export const CRAB_NAMES: Map = new Map([ [11, 'Crabito'], [12, 'Percy'], [13, 'Rocky'], + [14, 'Mr. Krabs'], ]); export const CLIPPY_NAMES: Map = new Map([ @@ -271,6 +272,7 @@ export const SNAKE_NAMES: Map = new Map([ [7, 'Ruby'], [8, 'Bailey'], [9, 'Max'], + [10, 'Seb'], ]); export const DUCK_NAMES: Map = new Map([ @@ -289,6 +291,7 @@ export const DUCK_NAMES: Map = new Map([ [13, 'Peaches'], [14, 'Quackers'], [15, 'Jelly Beans'], + [16, 'Donald'], ]); export const ZAPPY_NAMES: Map = new Map([ diff --git a/src/panel/pets.ts b/src/panel/pets.ts index 00c1c025..312c11c0 100644 --- a/src/panel/pets.ts +++ b/src/panel/pets.ts @@ -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`; } }