1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

27 lines
690 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 "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "せいなるはい",
'zh-tw': "聖灰",
'zh-cn': "聖灰"
},
illustrator: "Eske Yoshinob",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "自分のトラッシュからポケモンを5枚まで選び、相手に見せて、山札にもどして切る。",
'zh-tw': "從自己的棄牌區選擇最多5張寶可夢卡在給對手看過後放回牌庫並重洗。",
'zh-cn': "從自己的棄牌區選擇最多5張寶可夢卡在給對手看過後放回牌庫並重洗。"
},
trainerType: "Item",
regulationMark: "I"
}
export default card