mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
22 lines
383 B
TypeScript
22 lines
383 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVD"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "岩石胸甲"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "附有這張卡的【鬥】寶可夢,受到對手的寶可夢招式的傷害「-30」點。"
|
|
},
|
|
|
|
trainerType: "Tool",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |