From 29061f2f33cf2cdea5e3a7e7de9fb11dddc2134a Mon Sep 17 00:00:00 2001 From: Jacob Date: Sun, 9 Feb 2025 20:19:47 -0600 Subject: [PATCH] add two more avatars --- modules/avatars.ts | 6 +- public/profile/avatars/hades.svg | 135 +++++++++++++++++++++++++ public/profile/avatars/medusa.svg | 158 ++++++++++++++++++++++++++++++ util/types.ts | 4 +- 4 files changed, 301 insertions(+), 2 deletions(-) create mode 100644 public/profile/avatars/hades.svg create mode 100644 public/profile/avatars/medusa.svg diff --git a/modules/avatars.ts b/modules/avatars.ts index 368613c2..c9a83ce0 100644 --- a/modules/avatars.ts +++ b/modules/avatars.ts @@ -4,6 +4,8 @@ import AphroditeAvatar from "@/public/profile/avatars/aphrodite.svg"; import PoseidonAvatar from "@/public/profile/avatars/poseidon.svg"; import ApolloAvatar from "@/public/profile/avatars/apollo.svg"; import AthenaAvatar from "@/public/profile/avatars/athena.svg"; +import MedusaAvatar from "@/public/profile/avatars/medusa.svg"; +import HadesAvatar from "@/public/profile/avatars/hades.svg"; import { Avatars } from "@/util/types"; @@ -13,5 +15,7 @@ export const avatars = [ { name: Avatars.APHRODITE, icon: AphroditeAvatar }, { name: Avatars.POSEIDON, icon: PoseidonAvatar }, { name: Avatars.APOLLO, icon: ApolloAvatar }, - { name: Avatars.ATHENA, icon: AthenaAvatar } + { name: Avatars.ATHENA, icon: AthenaAvatar }, + { name: Avatars.MEDUSA, icon: MedusaAvatar }, + { name: Avatars.HADES, icon: HadesAvatar } ]; diff --git a/public/profile/avatars/hades.svg b/public/profile/avatars/hades.svg new file mode 100644 index 00000000..1be7ac5d --- /dev/null +++ b/public/profile/avatars/hades.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/profile/avatars/medusa.svg b/public/profile/avatars/medusa.svg new file mode 100644 index 00000000..01c268ee --- /dev/null +++ b/public/profile/avatars/medusa.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/util/types.ts b/util/types.ts index 0137b7b2..d5705a7f 100644 --- a/util/types.ts +++ b/util/types.ts @@ -264,7 +264,9 @@ export enum Avatars { APHRODITE = "aphrodite", POSEIDON = "poseidon", APOLLO = "apollo", - ATHENA = "athena" + ATHENA = "athena", + MEDUSA = "medusa", + HADES = "hades" } export interface EventType {