mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
24 lines
492 B
TypeScript
24 lines
492 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SK"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "通頂雪道",
|
|
ja: "頂への雪道"
|
|
},
|
|
|
|
illustrator: "Oswaldo KATO",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "雙方場上的「擁有規則的寶可夢」的特性全部消除。",
|
|
ja: "おたがいの場の「ルールを持つポケモン」の特性は、すべてなくなる。"
|
|
},
|
|
|
|
trainerType: "Stadium",
|
|
regulationMark: "E"
|
|
}
|
|
|
|
export default card |