import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Horsea δ", fr: "Hypotrempe δ ESPÈCES DELTA" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 116, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Ram", fr: "Collision" }, damage: 10, }, { cost: [ "Fire", "Colorless", ], name: { en: "Steady Firebreathing", fr: "Crachage de feu régulier" }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card