import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Linoone", }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 264, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Zigzagoon", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Sniff Out", }, effect: { en: "Put any 1 card from your discard pile into your hand.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Fury Swipes", }, effect: { en: "Flip 3 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card