import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Linoone", fr: "Lineon" }, illustrator: "Yuka Morii", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 264, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Zigzagoon", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Body Slam", fr: "Plaquage" }, 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, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Claw Swipe", fr: "Combo-serres" }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card