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

27 lines
1.0 KiB
TypeScript
Raw Permalink 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 "../SV9"
const card: Card = {
set: Set,
name: {
ja: "ホップのこだわりハチマキ",
'zh-tw': "赫普的講究頭帶",
'zh-cn': "赫普的講究頭帶"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "このカードをつけている「ホップのポケモン」は、ワザを使うためのエネルギーがエネルギー1個ぶん少なくなり、そのポケモンが使うワザの、相手のバトルポケモンへのダメージは「+30」される。",
'zh-tw': "附有這張卡的「赫普的寶可夢」使用招式所需的能量減少1個【無】能量那隻寶可夢使用的招式對對手的戰鬥寶可夢造成的傷害「+30」點。",
'zh-cn': "附有這張卡的「赫普的寶可夢」使用招式所需的能量減少1個【無】能量那隻寶可夢使用的招式對對手的戰鬥寶可夢造成的傷害「+30」點。"
},
trainerType: "Tool",
regulationMark: "I"
}
export default card