mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
21 lines
350 B
TypeScript
21 lines
350 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV2a"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "ポケモンいれかえ"
|
|
},
|
|
|
|
illustrator: "Studio Bora Inc.",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "自分のバトルポケモンをベンチポケモンと入れ替える。"
|
|
},
|
|
|
|
trainerType: "Item"
|
|
}
|
|
|
|
export default card |