1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

25 lines
819 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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