import { Card } from '../../../interfaces' import Set from '../Legend Maker' const card: Card = { name: { en: "Omastar", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 139, ], hp: 100, types: [ "Water", ], evolveFrom: { en: "Omanyte", }, stage: "Stage2", abilities: [ { type: "Poke-BODY", name: { en: "Ancient Fang", }, effect: { en: "As long as you have Kabuto, Kabutops, or Kabutops ex in play, Omastar's attacks do 20 more damage to the Defending Pokémon (before applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Drag Off", }, effect: { en: "Before doing damage, you may choose 1 of your opponent's Benched Pokémon and switch it with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch.", }, damage: 10, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Hydro Splash", }, damage: 50, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card