mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
22 lines
411 B
TypeScript
22 lines
411 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S10a"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "睿智湖"
|
|
},
|
|
|
|
illustrator: "Oswaldo KATO",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "雙方的身上附有【水】或者【鬥】能量的寶可夢,受到對手的寶可夢招式的傷害「-20」點。"
|
|
},
|
|
|
|
trainerType: "Stadium",
|
|
regulationMark: "F"
|
|
}
|
|
|
|
export default card |