From 12b33bf02f74ceb7f0a69ca7650a296eca09bd78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KrystalSkull=F0=9F=92=96?= Date: Thu, 13 Jun 2024 22:20:45 -0400 Subject: [PATCH] Update FriendShip Ranks (#5) E ER * Add files via upload * Update index.tsx * Update index.tsx --------- Co-authored-by: thororen <78185467+thororen1234@users.noreply.github.com> --- src/equicordplugins/friendshipRanks/icons.tsx | 46 +++++++++++++++++++ src/equicordplugins/friendshipRanks/index.tsx | 8 +++- 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/src/equicordplugins/friendshipRanks/icons.tsx b/src/equicordplugins/friendshipRanks/icons.tsx index a704a229..3d466494 100644 --- a/src/equicordplugins/friendshipRanks/icons.tsx +++ b/src/equicordplugins/friendshipRanks/icons.tsx @@ -149,6 +149,52 @@ export function burningIcon(props) { ); } +export function fighterIcon(props) { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} + export function starIcon(props) { return ( diff --git a/src/equicordplugins/friendshipRanks/index.tsx b/src/equicordplugins/friendshipRanks/index.tsx index eb666f61..de76d10e 100644 --- a/src/equicordplugins/friendshipRanks/index.tsx +++ b/src/equicordplugins/friendshipRanks/index.tsx @@ -12,7 +12,7 @@ import { Modals, ModalSize, openModal } from "@utils/modal"; import definePlugin from "@utils/types"; import { Button, Flex, Forms, RelationshipStore } from "@webpack/common"; -import { bestiesIcon, bloomingIcon, burningIcon, royalIcon, sproutIcon, starIcon } from "./icons"; +import { bestiesIcon, bloomingIcon, burningIcon, fighterIcon, royalIcon, sproutIcon, starIcon } from "./icons"; interface rankInfo { title: string; @@ -52,6 +52,12 @@ const ranks: rankInfo[] = requirement: 90, assetSVG: burningIcon }, + { + title: "Fighter", + description: "Your friendship is strong (6 Months)", + requirement: 182.5, + assetSVG: fighterIcon + }, { title: "Star", description: "Your friendship has been going on for a WHILE (1 Year)",