import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Carnivine", }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 90, types: [ "Grass", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Return", }, effect: { en: "You may draw cards until you have 5 cards in your hand.", }, damage: 20, }, { cost: [ "Grass", "Colorless", ], name: { en: "Giga Drain", }, effect: { en: "Heal from this Pokémon the same amount of damage you did to your opponent’s Active Pokémon.", }, damage: 40, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card