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

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

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

printf 'Installed %s to %s\n' 'Akane' "$PET_DIR"
