import { Card } from '../../../interfaces' import Set from '../Team Up' const card: Card = { name: { en: "Omanyte", fr: "Amonita", es: "Omanyte", it: "Omanyte", pt: "Omanyte", de: "Amonitas" }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 138, ], hp: 90, types: [ "Fighting", ], evolveFrom: { en: "Unidentified Fossil", fr: "Fossile Inconnu", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Tickle", fr: "Chatouille", es: "Cosquillas", it: "Solletico", pt: "Cócegas", de: "Spaßkanone" }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.", it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.", pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente será Paralisado.", de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert." }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card