mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
24 lines
586 B
TypeScript
24 lines
586 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVDs"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
th: "สับเปลี่ยนโปเกมอน[ไอเท็ม]",
|
|
id: "Tukar Pokémon"
|
|
},
|
|
|
|
illustrator: "Studio Bora Inc.",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
th: "สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายเรากับโปเกมอนบนเบนช์",
|
|
id: "Tukar Pokémon Bertarung sendiri dengan Pokémon Cadangan."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |