1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

68 lines
755 B
TypeScript

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