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

27 lines
798 B
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: "AYUMI ODASHIMA",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "自分の山札からたねポケモンの「ホップのポケモン」を2枚まで選び、ベンチに出す。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢的「赫普的寶可夢」放置於備戰區。並且重洗牌庫。",
'zh-cn': "從自己的牌庫選擇最多2張【基礎】寶可夢的「赫普的寶可夢」放置於備戰區。並且重洗牌庫。"
},
trainerType: "Item",
regulationMark: "I"
}
export default card