mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
380 B
TypeScript
22 lines
380 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S4"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "戰競溫泉"
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "雙方的【基礎】寶可夢,受到對手的寶可夢招式的傷害「-20」點。"
|
|
},
|
|
|
|
trainerType: "Stadium",
|
|
regulationMark: "D"
|
|
}
|
|
|
|
export default card |