import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Caterpie", fr: "Chenipan" }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 10, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Headbutt", fr: "Coup d'boule" }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Entangling Thread", fr: "Piège-fil" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé." }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card