#!/usr/bin/env sh
set -eu

PET_DIR="$HOME/.codex/pets/corgi-cool"
mkdir -p "$PET_DIR"

curl -fsSL 'https://pub-bc2a06d3a8b54a06b316ca88c1a4f7ec.r2.dev/pets/top-installed/0197-corgi-cool/pet.json' -o "$PET_DIR/pet.json"
curl -fsSL 'https://pub-bc2a06d3a8b54a06b316ca88c1a4f7ec.r2.dev/pets/top-installed/0197-corgi-cool/spritesheet.webp' -o "$PET_DIR/spritesheet.webp"

printf 'Installed %s to %s\n' 'Corgi Cool' "$PET_DIR"
