mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
367 B
TypeScript
22 lines
367 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV5s"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
id: "Kemurnian Hati Bianca"
|
|
},
|
|
|
|
illustrator: "Cona Nitanda",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
id: "Pulihkan HP 1 Pokémon sendiri dengan sisa HP 30 atau kurang sepenuhnya."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |