1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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/SV/SV6/095.ts Normal file
View File

@ -0,0 +1,25 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ハンディサーキュレーター",
'zh-tw': "手持循環扇"
},
category: "Trainer",
rarity: "Uncommon",
illustrator: "Toyste Beach",
effect: {
ja: "このカードをつけているポケモンが、バトル場で相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンについているエネルギーを1個選び、相手のベンチポケモンにつけ替える。",
'zh-tw': "附有這張卡的寶可夢在戰鬥場受到對手的寶可夢招式的傷害時選擇1個使用招式的寶可夢身上附加的能量改附於對手的備戰寶可夢身上。"
},
trainerType: "Tool",
regulationMark: "H"
}
export default card