diff --git a/public/locales/en-US/common.json b/public/locales/en-US/common.json
index d4b1ebcb..a6c62819 100644
--- a/public/locales/en-US/common.json
+++ b/public/locales/en-US/common.json
@@ -73,7 +73,11 @@
"lance": "Lance",
"gauntlet": "Gauntlet",
"bow": "Bow",
- "chakram": "Chakram"
+ "chakram": "Chakram",
+ "best-on": "Best On",
+ "pri-weapon": "PRI Weapon",
+ "original-weapon": "Original Weapon",
+ "sources": "Sources"
},
"elfs-list": {
"description": "ELF list of Honkai 3rd",
@@ -97,5 +101,31 @@
"new-weapons": "New Weapons",
"supply-events": "Supply Events",
"supply-events-disclaimer": "DISCLAIMER: The schedule is based on Global - Americas Server. It may not be accurate since we update this manually. Please check the actual in-game information again before pulling supplies."
+ },
+ "sources": {
+ "sprit-weapon-foundry": {
+ "label": "Sprit Weapon Foundry",
+ "description": "Forge with 150 x AE Imaginon, 300 x Ether Fuel and 1 x 50Lv Sprit Weapon (190 x G1 Crystalyte, 80 x Honkai Piece and 400 x Ether Fuel)."
+ },
+ "dorm-equipment-supply": {
+ "label": "Dormitory Equipment Supply",
+ "description": "Pull with 200 x crystal for each supply. Don't pull this. Most of items are available in Exchange shop."
+ },
+ "pri-weapon-foundry": {
+ "label": "PRI Weapon Foundry",
+ "description": "Unlock the original weapon & Forge with 100 x Einstein's Torus, 15 x nanoceramic, 50 x SC Metal-H2 and 1 x any 50Lv 5 Star Supply Weapon with same type."
+ },
+ "weapon-exchange": {
+ "label": "Exchange Shop",
+ "description": "Exchange with 4000 x Weapon Resonance."
+ },
+ "stigmata-exchange": {
+ "label": "Exchange Shop",
+ "description": "Exchange with 6000 x Stigmata Resonance."
+ },
+ "special-divine-key-supply": {
+ "label": "Divine Key Supply",
+ "description": "Only available in special supply events like Firepower Supply and Schicksal Arsenal. Pull with 280 x crystal for each supply."
+ }
}
}
diff --git a/public/locales/ko-KR/common.json b/public/locales/ko-KR/common.json
index 85ee7384..c86b1623 100644
--- a/public/locales/ko-KR/common.json
+++ b/public/locales/ko-KR/common.json
@@ -68,7 +68,11 @@
"lance": "랜스",
"gauntlet": "건틀릿",
"bow": "활",
- "chakram": "차크람"
+ "chakram": "차크람",
+ "best-on": "추천 발키리",
+ "pri-weapon": "초월 무기",
+ "original-weapon": "원형 무기",
+ "sources": "획득 방법"
},
"elfs-list": {
"description": "붕괴 3rd 인형 목록",
@@ -92,5 +96,35 @@
"new-weapons": "신규 무기",
"supply-events": "보급 이벤트",
"supply-events-disclaimer": "주의: 보급 일정은 글로벌 아메리카 서버 기준으로 작성되어 있습니다. 수작업으로 갱신하기에 정확하지 않은 부분이 있을 수도 있습니다. 보급 가차를 돌리기 전에 게임 내 정보를 꼭 다시 한번 확인해주세요."
+ },
+ "sources": {
+ "sprit-weapon-foundry": {
+ "label": "진영 무기 단조",
+ "description": "150 x 네겐트로피 허수 코어, 300 x 플로지스톤 에테르, 1 x 50 레벨 진영 무기(190 x G1 결정, 80 x 붕괴의 파편, 400 x 플로지스톤 에테르)로 단조."
+ },
+ "dorm-equipment-supply": {
+ "label": "본부 장비 보급",
+ "description": "보급마다 200 x 수정을 소모. 뽑지 않기를 추천함. 대부분의 아이템들은 치환 공간에서 구할 수 있음."
+ },
+ "focused-supply": {
+ "label": "집중 보급",
+ "description": "보급마다 280 x 수정을 소모."
+ },
+ "pri-weapon-foundry": {
+ "label": "초월 무기 단조",
+ "description": "원형 무기 획득 후, 100 x 아인슈타인 토러스, 15 x 나노 세라믹, 50 x 초전도 금속성 수소, 1 x 같은 종류의 50레벨 5성 보급 무기로 단조."
+ },
+ "weapon-exchange": {
+ "label": "치환 공간",
+ "description": "4000 x 무장 공명으로 교환."
+ },
+ "stigmata-exchange": {
+ "label": "치환 공간",
+ "description": "6000 x 성흔 공명으로 교환."
+ },
+ "special-divine-key-supply": {
+ "label": "신의 열쇠 보급",
+ "description": "천명 무기고나 화력 보급등 특수 보급 이벤트에서만 획득 가능. 보급마다 280 x 수정을 소모."
+ }
}
}
diff --git a/src/components/molecules/SourceCard.tsx b/src/components/molecules/SourceCard.tsx
new file mode 100644
index 00000000..53bab1cc
--- /dev/null
+++ b/src/components/molecules/SourceCard.tsx
@@ -0,0 +1,124 @@
+/** @jsxImportSource theme-ui */
+import { Card, Paragraph, Heading } from '@theme-ui/components'
+import { SourceData } from '../../lib/honkai3rd/sources'
+
+import { useTranslation } from '../../lib/i18n'
+
+interface SourceCardProps {
+ source: SourceData
+}
+
+const SourceCard = ({ source }: SourceCardProps) => {
+ const { t } = useTranslation()
+ switch (source.type) {
+ case 'spirit-weapon-foundry':
+ return (
+
+
+ {t('sources.sprit-weapon-foundry.label')}
+
+
+ {t('sources.sprit-weapon-foundry.description')}
+
+
+ )
+ case 'dorm-equipment-supply':
+ return (
+
+
+ {t('sources.dorm-equipment-supply.label')}
+
+
+ {t('sources.dorm-equipment-supply.description')}
+
+
+ )
+ case 'focused-supply':
+ return (
+
+
+ {t('sources.focused-supply.label')}
+
+
+ {t('sources.focused-supply.description')}
+
+
+ )
+ case 'pri-weapon-foundry':
+ return (
+
+
+ {t('sources.pri-weapon-foundry.label')}
+
+
+ {t('sources.pri-weapon-foundry.description')}
+
+
+ )
+ case 'weapon-exchange':
+ return (
+
+
+ {t('sources.weapon-exchange.label')}
+
+
+ {t('sources.weapon-exchange.description')}
+
+
+ )
+ case 'stigmata-exchange':
+ return (
+
+
+ {t('sources.stigmata-exchange.label')}
+
+
+ {t('sources.stigmata-exchange.description')}
+
+
+ )
+ case 'special-divine-key-supply':
+ return (
+
+
+ {t('sources.special-divine-key-supply.label')}
+
+
+ {t('sources.special-divine-key-supply.description')}
+
+
+ )
+ default:
+ return (
+
+ Unknown: {source.type}
+
+ )
+ }
+}
+
+export default SourceCard
+
+const SourceCardConatiner: React.FC = ({ children }) => {
+ return (
+
+ {children}
+
+ )
+}
+
+const SourceCardHeading: React.FC = ({ children }) => {
+ return (
+
+ {children}
+
+ )
+}
+
+const SourceCardDescription: React.FC = ({ children }) => {
+ return {children}
+}
diff --git a/src/lib/honkai3rd/sources.ts b/src/lib/honkai3rd/sources.ts
new file mode 100644
index 00000000..e90cbda9
--- /dev/null
+++ b/src/lib/honkai3rd/sources.ts
@@ -0,0 +1,12 @@
+export type SourceType =
+ | 'pri-weapon-foundry'
+ | 'focused-supply'
+ | 'spirit-weapon-foundry'
+ | 'weapon-exchange'
+ | 'stigmata-exchange'
+ | 'dorm-equipment-supply'
+ | 'special-divine-key-supply'
+
+export interface SourceData {
+ type: SourceType
+}
diff --git a/src/lib/honkai3rd/weapons.ts b/src/lib/honkai3rd/weapons.ts
index f7d00fbc..5d7f60d3 100644
--- a/src/lib/honkai3rd/weapons.ts
+++ b/src/lib/honkai3rd/weapons.ts
@@ -1,3 +1,5 @@
+import { SourceData } from './sources'
+
export interface WeaponSkill {
name: string
krName?: string
@@ -25,4 +27,13 @@ export interface WeaponData {
rarity: number
skills: WeaponSkill[]
version?: string
+ battlesuits?: {
+ id: string
+ suitability?: number
+ description?: string
+ descriptionKr?: string
+ }[]
+ priWeapon?: string
+ originalWeapons?: string[]
+ sources?: SourceData[]
}
diff --git a/src/pages/honkai3rd/battlesuits/[battlesuitId].tsx b/src/pages/honkai3rd/battlesuits/[battlesuitId].tsx
index 91f1d56e..0119fceb 100644
--- a/src/pages/honkai3rd/battlesuits/[battlesuitId].tsx
+++ b/src/pages/honkai3rd/battlesuits/[battlesuitId].tsx
@@ -189,6 +189,7 @@ const BattlesuitShowPage = ({
@@ -198,29 +199,33 @@ const BattlesuitShowPage = ({
{t(`battlesuit-show.equipmentTypes.${equipmentItem.type}`)}
-
+
{equipmentItem.weapon != null && (
-
+
)}
{equipmentItem.stigmataTop != null && (
)}
{equipmentItem.stigmataMid != null && (
)}
{equipmentItem.stigmataBot != null && (
)}
diff --git a/src/pages/honkai3rd/weapons/[weaponId].tsx b/src/pages/honkai3rd/weapons/[weaponId].tsx
index f8abfe05..7b687ca5 100644
--- a/src/pages/honkai3rd/weapons/[weaponId].tsx
+++ b/src/pages/honkai3rd/weapons/[weaponId].tsx
@@ -7,6 +7,7 @@ import { WeaponData } from '../../../lib/honkai3rd/weapons'
import { generateI18NPaths, getI18NProps } from '../../../server/i18n'
import {
getWeaponById,
+ getWeaponMapByIds,
listWeapons,
} from '../../../server/data/honkai3rd/weapons'
import { useRouter } from 'next/router'
@@ -15,12 +16,23 @@ import Head from '../../../components/atoms/Head'
import PageLink from '../../../components/atoms/PageLink'
import { assetsBucketBaseUrl } from '../../../lib/consts'
import Honkai3rdLayout from '../../../components/layouts/Honkai3rdLayout'
+import { getBattlesuitMapByIds } from '../../../server/data/honkai3rd/battlesuits'
+import { BattlesuitData } from '../../../lib/honkai3rd/battlesuits'
+import BattlesuitCard from '../../../components/molecules/BattlesuitCard'
+import WeaponCard from '../../../components/molecules/WeaponCard'
+import SourceCard from '../../../components/molecules/SourceCard'
interface WeaponShowPageProps {
weapon: WeaponData
+ battlesuitMap: { [key: string]: BattlesuitData }
+ weaponMap: { [key: string]: WeaponData }
}
-const WeaponShowPage = ({ weapon }: WeaponShowPageProps) => {
+const WeaponShowPage = ({
+ weapon,
+ battlesuitMap,
+ weaponMap,
+}: WeaponShowPageProps) => {
const { locale } = useRouter()
const { t } = useTranslation()
@@ -79,6 +91,50 @@ const WeaponShowPage = ({ weapon }: WeaponShowPageProps) => {
ATK : {weapon.atk} / CRT : {weapon.crt}
+ {weapon.battlesuits != null && weapon.battlesuits.length > 0 && (
+
+ {t('weapons-show.best-on')}
+ {weapon.battlesuits.map(({ id: battlesuitId }) => {
+ return (
+
+ )
+ })}
+
+ )}
+ {weapon.priWeapon != null && (
+
+ {t('weapons-show.pri-weapon')}
+
+
+ )}
+ {weapon.originalWeapons != null && weapon.originalWeapons.length > 0 && (
+
+ {t('weapons-show.original-weapon')}
+ {weapon.originalWeapons.map((originalWeaponId) => {
+ return (
+
+ )
+ })}
+
+ )}
+ {weapon.sources != null && (
+
+ {t('weapons-show.sources')}
+ {weapon.sources
+ .sort((a, b) => a.type.localeCompare(b.type))
+ .map((source) => {
+ return
+ })}
+
+ )}
@@ -116,9 +172,30 @@ export async function getStaticProps({
locale,
}: NextPageContext & { params: { weaponId: string } }) {
const weapon = getWeaponById(params.weaponId)
+ const battlesuitMap = getBattlesuitMapByIds(
+ weapon != null && weapon.battlesuits != null
+ ? weapon.battlesuits.map(({ id }) => id)
+ : []
+ )
+
+ const weaponIds = []
+ if (weapon != null) {
+ if (weapon.priWeapon != null) {
+ weaponIds.push(weapon.priWeapon)
+ }
+ if (weapon.originalWeapons != null) {
+ weaponIds.push(...weapon.originalWeapons)
+ }
+ }
+ const weaponMap = getWeaponMapByIds(weaponIds)
return {
- props: { weapon, ...(await getI18NProps(locale)) },
+ props: {
+ weapon,
+ battlesuitMap,
+ weaponMap,
+ ...(await getI18NProps(locale)),
+ },
}
}