mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
21 lines
503 B
TypeScript
21 lines
503 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S9a"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "コトブキムラ"
|
|
},
|
|
|
|
illustrator: "Oswaldo KATO",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "おたがいのプレイヤーは、自分の番ごとに1回、自分の手札をすべて山札にもどして切ってよい。その場合、自分の山札を5枚引く。この効果を使ったなら、自分の番は終わる。"
|
|
},
|
|
|
|
trainerType: "Stadium"
|
|
}
|
|
|
|
export default card |