mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
415 B
TypeScript
22 lines
415 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV4s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Skenario Profesor Futu"
|
|
},
|
|
|
|
illustrator: "Atsushi Furusawa",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Pilih 1 Pokémon di Arena sendiri, lalu kembalikan ke Kartu Pegangan. (Buang semua kartu selain Pokémon ke Trash.)"
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |