1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 15:49:55 +00:00

32 lines
337 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Full Heal",
},
illustrator: "Yoshinobu Saito",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Your Active Pokémon recovers from all Special Conditions.",
},
}
export default card