import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Carvanha δ", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 318, ], hp: 40, types: [ "Fighting", ], stage: "Basic", attacks: [ { name: { en: "Bite", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Reckless Charge", }, effect: { en: "Flip a coin. If tails, Carvanha does 10 damage to itself.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card