1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 01:19:54 +00:00

32 lines
393 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Growlithe"
},
illustrator: "Mizue",
category: "Pokemon",
hp: 70,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Bite"
},
damage: "20"
}],
retreat: 1,
rarity: "One Diamond"
}
export default card