diff --git a/src/assets/icons/pokemon/regular/enamorus-therian.png b/src/assets/icons/pokemon/regular/enamorus-therian.png new file mode 100644 index 00000000..b918d45b Binary files /dev/null and b/src/assets/icons/pokemon/regular/enamorus-therian.png differ diff --git a/src/components/Credits/credits.json b/src/components/Credits/credits.json index d3c82c45..d11d8790 100644 --- a/src/components/Credits/credits.json +++ b/src/components/Credits/credits.json @@ -573,35 +573,35 @@ "link": "https://www.deviantart.com/erroring/art/totally-tubular-938472137" }, { - "role": "", - "name": "", - "link": "" + "role": "Orthworm", + "name": "Hypertomi Art", + "link": "https://www.pillowfort.social/posts/3101087" }, { - "role": "", - "name": "", - "link": "" + "role": "Enamorus", + "name": "LordCayy", + "link": "https://twitter.com/lordcayy" }, { - "role": "", - "name": "", - "link": "" + "role": "Enamorus-Therian", + "name": "Hivemind Coroika", + "link": "https://www.tumblr.com/hivemindcoroika" }, { - "role": "", - "name": "", - "link": "" + "role": "Landorus-Therian", + "name": "Salanchu", + "link": "https://www.deviantart.com/salanchu" }, { - "role": "", - "name": "", - "link": "" + "role": "Torandus-Therian", + "name": "hwy", + "link": "https://www.pinterest.ph/pin/297800594081702545/" }, { - "role": "", - "name": "", - "link": "" + "role": "Thundurus-Therian", + "name": "ewokakuaaede", + "link": "https://danbooru.donmai.us/posts?tags=ewokakukaede&z=1" }, { "role": "", diff --git a/src/img/enamorus-therian.jpg b/src/img/enamorus-therian.jpg new file mode 100644 index 00000000..43692f51 Binary files /dev/null and b/src/img/enamorus-therian.jpg differ diff --git a/src/img/enamorus.jpg b/src/img/enamorus.jpg new file mode 100644 index 00000000..469b3dd7 Binary files /dev/null and b/src/img/enamorus.jpg differ diff --git a/src/img/landorus-therian.jpg b/src/img/landorus-therian.jpg new file mode 100644 index 00000000..c8407f69 Binary files /dev/null and b/src/img/landorus-therian.jpg differ diff --git a/src/img/orthworm.jpg b/src/img/orthworm.jpg new file mode 100644 index 00000000..38131553 Binary files /dev/null and b/src/img/orthworm.jpg differ diff --git a/src/img/thundurus-therian.jpg b/src/img/thundurus-therian.jpg new file mode 100644 index 00000000..c27a44b6 Binary files /dev/null and b/src/img/thundurus-therian.jpg differ diff --git a/src/img/tornadus-therian.jpg b/src/img/tornadus-therian.jpg new file mode 100644 index 00000000..bec26dbd Binary files /dev/null and b/src/img/tornadus-therian.jpg differ diff --git a/src/utils/Forme.ts b/src/utils/Forme.ts index 4c44f3e4..ae1bea75 100644 --- a/src/utils/Forme.ts +++ b/src/utils/Forme.ts @@ -106,4 +106,6 @@ export enum Forme { School = 'school', Pirouette = 'pirouette', + + Therian = 'therian', } diff --git a/src/utils/addForme.ts b/src/utils/addForme.ts index f6ccd06b..b2a333f4 100644 --- a/src/utils/addForme.ts +++ b/src/utils/addForme.ts @@ -84,6 +84,8 @@ export const addForme = (species: string | undefined, forme?: keyof typeof Forme 'School', 'Pirouette', + + 'Therian' ].includes(forme) ) { return `${species}-${forme.replace(/\s/g, '-').replace(/\'/g, '-').toLowerCase()}`; diff --git a/src/utils/getAdditionalFormes.ts b/src/utils/getAdditionalFormes.ts index f8deac63..03567f25 100644 --- a/src/utils/getAdditionalFormes.ts +++ b/src/utils/getAdditionalFormes.ts @@ -80,7 +80,7 @@ export const getAdditionalFormes = (species: string | undefined): string[] => { if (s === 'deerling' || s === 'sawsbuck') { return ['Spring', 'Summer', 'Autumn', 'Winter']; } - if (s === 'tornadus' || s === 'thundurus' || s === 'landorus') { + if (s === 'tornadus' || s === 'thundurus' || s === 'landorus' || s === 'enamorus') { return ['Incarnate', 'Therian']; } if (s === 'kyurem') {