import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Kabuto δ", fr: "Kabuto δ ESPÈCES DELTA" }, illustrator: "Hajime Kusajima", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 140, ], hp: 70, types: [ "Lightning", ], evolveFrom: { en: "Mysterious Fossil", }, stage: "Stage1", attacks: [ { cost: [ "Lightning", ], name: { en: "Eerie Light", fr: "Lumière étrange" }, effect: { en: "The Defending Pokémon is now Confused.", fr: "Le Pokémon Défenseur est maintenant Confus." }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Shell Attack", fr: "Coquill-attaque" }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card