mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
22 lines
345 B
TypeScript
22 lines
345 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV3s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Tukar Pokémon"
|
|
},
|
|
|
|
illustrator: "Studio Bora Inc.",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Tukar Pokémon Bertarung sendiri dengan Pokémon Cadangan."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |