From ea9401ea26ac61145d85cbde43e4b05d20aa5843 Mon Sep 17 00:00:00 2001 From: MattIPv4 Date: Mon, 9 Dec 2024 01:11:45 +0000 Subject: [PATCH] Mark Timber as retired --- package-lock.json | 4 +-- package.json | 2 +- src/ambassadors/core.ts | 58 ++++++++++++++++++++--------------------- 3 files changed, 32 insertions(+), 32 deletions(-) diff --git a/package-lock.json b/package-lock.json index b28ca70..8304928 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@alveusgg/data", - "version": "0.45.0", + "version": "0.46.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@alveusgg/data", - "version": "0.45.0", + "version": "0.46.0", "license": "SEE LICENSE IN LICENSE.md", "devDependencies": { "@typescript-eslint/eslint-plugin": "^6.2.0", diff --git a/package.json b/package.json index 6f46681..25321bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@alveusgg/data", - "version": "0.45.0", + "version": "0.46.0", "private": true, "license": "SEE LICENSE IN LICENSE.md", "repository": { diff --git a/src/ambassadors/core.ts b/src/ambassadors/core.ts index 155bf21..3d950ac 100644 --- a/src/ambassadors/core.ts +++ b/src/ambassadors/core.ts @@ -852,35 +852,6 @@ const ambassadors = { homepage: null, plush: null, }, - timber: { - name: "Timber", - alternate: [], - commands: ["timber"], - class: Class.Mammalia, - species: "Wolf Hybrid", - scientific: "Canis lupus x Canis familiaris", - sex: "Male", - birth: "2014", - arrival: "2024-05-04", - retired: null, - iucn: { - id: 3746, - status: "LC", - }, - enclosure: "wolves", - story: - "Timber was rescued from a facility that has received numerous USDA citations based on violations of the Animal Welfare Act.", - mission: - "He is an ambassador for educating people about responsible pet ownership, the historic persecution of wolves by humans, and the importance of wolves as keystone species in their ecosystems.", - native: { - text: "Eurasia and North America (forests, inland wetlands, shrublands, grasslands (including Arctic tundra), pastures, deserts, and rocky peaks on mountains)", - source: "https://en.wikipedia.org/wiki/Wolf", - }, - lifespan: lifespans.wolfHybrid, - clips: [], - homepage: null, - plush: null, - }, momo: { name: "Momo", alternate: [], @@ -1269,6 +1240,35 @@ const ambassadors = { homepage: null, plush: null, }, + timber: { + name: "Timber", + alternate: [], + commands: ["timber"], + class: Class.Mammalia, + species: "Wolf Hybrid", + scientific: "Canis lupus x Canis familiaris", + sex: "Male", + birth: "2014", + arrival: "2024-05-04", + retired: "2024-12-08", + iucn: { + id: 3746, + status: "LC", + }, + enclosure: "wolves", + story: + "Timber was rescued from a facility that has received numerous USDA citations based on violations of the Animal Welfare Act.", + mission: + "He is an ambassador for educating people about responsible pet ownership, the historic persecution of wolves by humans, and the importance of wolves as keystone species in their ecosystems.", + native: { + text: "Eurasia and North America (forests, inland wetlands, shrublands, grasslands (including Arctic tundra), pastures, deserts, and rocky peaks on mountains)", + source: "https://en.wikipedia.org/wiki/Wolf", + }, + lifespan: lifespans.wolfHybrid, + clips: [], + homepage: null, + plush: null, + }, } as const satisfies Record; const ambassadorKeys = Object.keys(ambassadors) as AmbassadorKey[];