mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
30 lines
254 B
TypeScript
30 lines
254 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Base Set 2'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Full Heal",
|
|
},
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|