1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

25
data-asia/S/S9/096.ts Normal file
View File

@ -0,0 +1,25 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "濱名的後援",
ja: "ハマナのバックアップ"
},
illustrator: "Nagomi Nijo",
category: "Trainer",
effect: {
'zh-tw': "從自己的棄牌區選擇「寶可夢」卡與「寶可夢道具」卡與「競技場」卡與「能量」卡最多各1張在給對手看過後放回牌庫並重洗。",
ja: "自分のトラッシュから「ポケモン」と「ポケモンのどうぐ」と「スタジアム」と「エネルギー」を、それぞれ1枚まで選び、相手に見せて、山札にもどして切る。"
},
trainerType: "Supporter",
regulationMark: "F",
rarity: "Uncommon"
}
export default card