mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
422 B
TypeScript
22 lines
422 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S-P"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "古茲馬"
|
||
},
|
||
|
||
illustrator: "Masakazu Fukuda",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "選擇對手的1隻備戰寶可夢,與戰鬥寶可夢互換。然後,將自己的戰鬥寶可夢與備戰寶可夢互換。"
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "A"
|
||
}
|
||
|
||
export default card |