mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
353 B
TypeScript
22 lines
353 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVEM"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "勇氣護符"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "附有這張卡的【基礎】寶可夢的最大HP「+50」。"
|
|
},
|
|
|
|
trainerType: "Tool",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |