mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
21 lines
429 B
TypeScript
21 lines
429 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S9"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "チェレンの気くばり"
|
|
},
|
|
|
|
illustrator: "Ryuta Fuse",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "ダメカンがのっている自分のポケモンを1匹選び、そのポケモンと、ついているすべてのカードを、手札にもどす。"
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card |