mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
22 lines
329 B
TypeScript
22 lines
329 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVD"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "傷藥"
|
|
},
|
|
|
|
illustrator: "Ayaka Yoshida",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "將自己的1隻寶可夢恢復「30」HP。"
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |