1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

73 lines
922 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Omanyte",
de: "Amonitas"
},
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",
de: "Sammeln"
},
effect: {
en: "Draw 3 cards.",
de: "Ziehe 3 Karten"
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tickle",
de: "Spaßkanone"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
de: "Wirf 1 Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt gelähmt."
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "+20"
},
],
retreat: 1,
}
export default card