import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Omanyte", }, illustrator: "Aya Kusube", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 138, ], types: [ "Water", ], evolveFrom: { en: "Helix Fossil", }, stage: "Stage1", attacks: [ { cost: [ "Water", ], name: { en: "Collect", }, effect: { en: "Draw 3 cards.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Tickle", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "+20" }, ], retreat: 1, } export default card