Skip to content
Open
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
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ Use `{E}` as the eye character placeholder — it is replaced at render time wit
```typescript
cat: [
// Frame 0
[" ", " /\\_/\\ ", " ( {E} {E}) ", " ( ω ) ", " (\")_(\") "],
[" ", " /\\___/\\ ", " ( {E} {E} ) ", " ( ω ) ", " (\")___(\") "],
// Frame 1
[" ", " /\\_/\\ ", " ( {E} {E}) ", " ( ω ) ", " (\")_(\")~ "],
[" ", " /\\___/\\ ", " ( {E} {E} ) ", " ( ω ) ", " (\")___(\")~"],
// Frame 2
[" ", " /\\-/\\ ", " ( {E} {E}) ", " ( ω ) ", " (\")_(\") "],
[" ", " /\\---/\\ ", " ( {E} {E} ) ", " ( ω ) ", " (\")___(\") "],
],
```

Expand Down
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,24 +125,24 @@ Every buddy is uniquely generated from your Claude Code account — same species
</p>

```
duck goose blob cat dragon octopus
__ (°> .----. /\_/\ /^\ /^\ .----.
<(° )___ || ( ° ° ) ( ° °) < ° ° > ( ° ° )
( ._> _(__)_ ( ) ( ω ) ( ~~ ) (______)
`--' ^^^^ `----' (")_(") `-vvvv-' /\/\/\/\

owl penguin turtle snail ghost axolotl
/\ /\ .---. _,--._ ° .--. .----. }~(______)~{
((°)(°)) (°>°) ( ° ° ) \ ( @ ) / ° ° \ }~(° .. °)~{
( >< ) /( )\ [______] \_`--' | | ( .--. )
`----' `---' `` `` ~~~~~~~ ~`~``~`~ (_/ \_)

capybara cactus robot rabbit mushroom chonk
n______n n ____ n .[||]. (\__/) .-o-OO-o-. /\ /\
( ° ° ) | |° °| | [ ° ° ] ( ° ° ) (__________)( ° ° )
( oo ) |_| |_| [ ==== ] =( .. )= |° °| ( .. )
`------' | | `------' (")__(") |____| `------'
```
duck goose blob cat dragon octopus
__ (°> .----. /\___/\ /^\ /^\ .----.
<(° )___ || ( ° ° ) ( ° ° ) < ° ° > ( ° ° )
( ._> _(__)_ ( ) ( ω ) ( ~~ ) (______)
`--' ^^^^ `----' (")___(") `-vvvv-' /\/\/\/\

owl penguin turtle snail ghost axolotl
/\ /\ .---. _,--._ ° .--. .----. }~(______)~{
((°)(°)) (°>°) ( ° ° ) \ ( @ ) / ° ° \ }~(° .. °)~{
( >< ) /( )\ [______] \_`--' | | ( .--. )
`----' `---' `` `` ~~~~~~~ ~`~``~`~ (_/ \_)

capybara cactus robot rabbit mushroom chonk
n______n n ____ n .[||]. (\__/) .-o-OO-o-. /\ /\
( ° ° ) | |° °| | [ ° ° ] ( ° ° ) (__________) ( ° ° )
( oo ) |_| |_| [ ==== ] =( .. )= |° °| ( .. )
`------' | | `------' (")__(") |____| `------'


### Rarities

Expand Down
6 changes: 3 additions & 3 deletions server/art.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ export const SPECIES_ART: Record<Species, string[][]> = {
[" ", " .--. ", " ({E} {E}) ", " ( ) ", " `--' "],
],
cat: [
[" ", " /\\_/\\ ", " ( {E} {E}) ", " ( \u03c9 ) ", " (\")_(\") "],
[" ", " /\\_/\\ ", " ( {E} {E}) ", " ( \u03c9 ) ", " (\")_(\")~ "],
[" ", " /\\-/\\ ", " ( {E} {E}) ", " ( \u03c9 ) ", " (\")_(\") "],
[" ", " /\\___/\\ ", " ( {E} {E} ) ", " ( \u03c9 ) ", " (\")___(\") "],
[" ", " /\\___/\\ ", " ( {E} {E} ) ", " ( \u03c9 ) ", " (\")___(\")~"],
[" ", " /\\---/\\ ", " ( {E} {E} ) ", " ( \u03c9 ) ", " (\")___(\") "],
],
dragon: [
[" ", " /^\\ /^\\ ", " < {E} {E} > ", " ( ~~ ) ", " `-vvvv-' "],
Expand Down