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

27 lines
978 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "希望のアミュレット",
'zh-tw': "希望護身符",
'zh-cn': "希望護身符"
},
illustrator: "Toyste Beach",
category: "Trainer",
effect: {
ja: "このカードをつけているポケモンが、相手のポケモンからワザのダメージを受けてきぜつしたとき、自分の山札から好きなカードを3枚まで選び、手札に加える。そして山札を切る。",
'zh-tw': "附有這張卡的寶可夢受到對手的寶可夢招式的傷害而【昏厥】時從自己的牌庫任意選擇最多3張卡加入手牌。並且重洗牌庫。",
'zh-cn': "附有這張卡的寶可夢受到對手的寶可夢招式的傷害而【昏厥】時從自己的牌庫任意選擇最多3張卡加入手牌。並且重洗牌庫。"
},
trainerType: "Tool",
rarity: "None",
regulationMark: "H"
}
export default card