1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

65 lines
795 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 opponents Active Pokémon.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card