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

25 lines
800 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 "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "祝慶村",
ja: "コトブキムラ"
},
illustrator: "Oswaldo KATO",
category: "Trainer",
effect: {
'zh-tw': "雙方玩家在每個自己的回合時可使用1次可將自己的手牌全部放回牌庫並重洗。這個情況下從自己的牌庫抽出5張卡。若使用了這個效果則自己的回合結束。",
ja: "おたがいのプレイヤーは、自分の番ごとに1回、自分の手札をすべて山札にもどして切ってよい。その場合、自分の山札を5枚引く。この効果を使ったなら、自分の番は終わる。"
},
trainerType: "Stadium",
regulationMark: "F",
rarity: "Uncommon"
}
export default card