Skip to content

Commit

Permalink
Merge pull request #593 from halawaykeller/add-orange-cat
Browse files Browse the repository at this point in the history
Add orange cat
  • Loading branch information
tonybaloney authored Jan 27, 2025
2 parents 059160b + a5475ac commit 6f92eb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/panel/pets/cat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ export class Cat extends BasePetType {
static possibleColors = [
PetColor.black,
PetColor.brown,
PetColor.white,
PetColor.gray,
PetColor.lightbrown,
PetColor.orange,
PetColor.white,
];
sequence = {
startingState: States.sitIdle,
Expand Down Expand Up @@ -207,4 +208,5 @@ export const CAT_NAMES: ReadonlyArray<string> = [
'Carlotta',
'Felix',
'Duchess',
'Byrt',
];
2 changes: 1 addition & 1 deletion src/test/gifs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as fs from 'fs';

const pets: { [key: string]: { colors: string[]; states: string[] } } = {
cat: {
colors: ['black', 'brown', 'gray', 'lightbrown', 'white'],
colors: ['black', 'brown', 'gray', 'lightbrown', 'orange', 'white'],
states: [
'fall_from_grab',
'idle',
Expand Down

0 comments on commit 6f92eb8

Please sign in to comment.