mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
433 B
TypeScript
22 lines
433 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S11"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "放逐市"
|
|
},
|
|
|
|
illustrator: "AYUMI ODASHIMA",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "每次當雙方的寶可夢【氣絕】時,不丟棄那隻寶可夢,而是放置於放逐區。(寶可夢以外的卡全部丟棄。)"
|
|
},
|
|
|
|
trainerType: "Stadium",
|
|
regulationMark: "F"
|
|
}
|
|
|
|
export default card |