mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
21 lines
445 B
TypeScript
21 lines
445 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S12"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "ジンダイ"
|
|
},
|
|
|
|
illustrator: "Hideki Ishikawa",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "このカードは、自分の手札がこのカード1枚だけのときにしか使えない。\n\nおたがいのベンチポケモンの数ぶん、自分の山札を引く。"
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card |