feat: ポケモンSV パーティ編成ツール(/party) - #85
Open
fnobi wants to merge 2 commits into
Open
Conversation
対策したい相手のタイプをチェックボックスで選択すると、 - 弱点を突ける攻撃タイプ / 半減で受けられる防御タイプの提案 - 攻守の相性スコアに基づくおすすめポケモン候補の提示 - 6体パーティの編成と、タイプごとの弱点・耐性チェック ができるツール。 - core: タイプ相性表・分析ロジック・SV主要ポケモンデータ(+テスト) - web: /party ページとパーティ編成UI Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01GD2zJeCxCxvcnq4jy2uezr
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
PokeAPIミラーの公式アートワーク画像(図鑑サイトと同じ公式イラスト)を 図鑑番号ベースで参照。フォルム違い(ウーラオス・オーガポン・ロトム・ ガチグマアカツキ・霊獣ランドロス)は専用IDで対応。 全118件のURLが有効なことを確認済み。 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01GD2zJeCxCxvcnq4jy2uezr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
ポケモンSVの6体パーティ編成を支援するツールを
/partyに追加しました。対策したい相手に含まれるタイプをチェックボックスで選択すると:
構成
packages/core/src/feature/pokemon-sv-types.ts— 第9世代タイプ相性表と相性計算packages/core/src/feature/pokemon-sv-analysis.ts— 攻め/受けタイプ推薦・ポケモン評価・パーティ耐性集計packages/core/src/feature/pokemon-sv-dex.ts— SV環境の主要ポケモンデータ(118体)packages/core/src/feature/__tests__/pokemon-sv.spec.ts— ロジックのユニットテストpackages/web/src/app/party/page.tsx+packages/web/src/component/PartyBuilderScene.tsx— UI確認済み
pnpm test(core: 30件パス)pnpm lint/pnpm typecheck(core・webともエラーなし)pnpm build(/partyが静的生成される)Vercelのpreview deployでは
/partyにアクセスしてください。🤖 Generated with Claude Code
https://claude.ai/code/session_01GD2zJeCxCxvcnq4jy2uezr
Generated by Claude Code