import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Kakuna", fr: "Coconfort", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 14, ], hp: 80, types: [ "Grass", ], evolveFrom: { en: "Weedle", fr: "Aspicot", }, stage: "Stage1", attacks: [ { cost: [ "Grass", ], name: { en: "Bug Bite", fr: "Piqûre", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 3, } export default card