import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Omanyte", }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 138, ], hp: 50, types: [ "Fighting", ], stage: "Stage1", abilities: [ { type: "Poke-POWER", name: { en: "Fossil", }, effect: { en: "Once during your turn (before your attack), you may flip a coin. If heads, search your deck for a card that evolves from Mysterious Fossil and put it on your Bench. Shuffle your deck afterward. Treat that card as a Basic Pokémon. This power can't be used if Omanyte is Asleep, Confused, or Paralyzed (or if your Bench is full).", }, }, ], attacks: [ { cost: [ "Water", ], name: { en: "Bind", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card