Skip to content

Commit 5f53b8f

Browse files
committed
feat: support displaying best buddy badge in gym defenders
1 parent 0c571d3 commit 5f53b8f

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

packages/locales/lib/human/en.json

+1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@
141141
"starts": "Starts",
142142
"ends": "Ends",
143143
"defender": "Defender",
144+
"best_buddy": "Best buddy",
144145
"cp": "CP",
145146
"kilogram": "kg",
146147
"meter": "m",

src/features/gym/GymPopup.jsx

+14
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,19 @@ const GymFooter = ({ lat, lon, hasRaid }) => {
622622
)
623623
}
624624

625+
const BestBuddyBadge = () => {
626+
const { t } = useTranslation()
627+
const Icons = useMemory((s) => s.Icons)
628+
return (
629+
<Img
630+
src={Icons.getMisc('bestbuddy')}
631+
alt={t('best_buddy')}
632+
maxHeight="15"
633+
maxWidth="15"
634+
/>
635+
)
636+
}
637+
625638
/**
626639
*
627640
* @param {import('@rm/types').Gym} props
@@ -661,6 +674,7 @@ const ExtraGymInfo = ({
661674
gpd.shiny,
662675
)}
663676
>
677+
{gpd.badge === 1 && BestBuddyBadge()}
664678
{t(`poke_${guarding_pokemon_id}`)}
665679
</TextWithIcon>
666680
</ExtraInfo>

0 commit comments

Comments
 (0)