mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 17:39:54 +00:00
27 lines
622 B
TypeScript
27 lines
622 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV10"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "火箭隊的監視塔",
|
|
'zh-cn': "火箭隊的監視塔",
|
|
ja: "ロケット団の監視塔"
|
|
},
|
|
|
|
illustrator: "AYUMI ODASHIMA",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "雙方場上所有【無】寶可夢的特性全部消除。",
|
|
'zh-cn': "雙方場上所有【無】寶可夢的特性全部消除。",
|
|
ja: "おたがいの場のポケモン全員の特性は、すべてなくなる。"
|
|
},
|
|
|
|
trainerType: "Stadium",
|
|
regulationMark: "I",
|
|
rarity: "Uncommon"
|
|
}
|
|
|
|
export default card |