import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex16-56", localId: 56, // Card informations name: { en: "Omanyte", }, hp: 70, type: [ Type.WATER, ], dexId: 138, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex16/56/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex16/56/high.png", }, }, evolveFrom: { en: "Mysterious Fossil", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Influence", }, text: { en: "Search your deck for Omanyte, Kabuto, Aerodactyl, Lileep, or Anorith and put up to 2 of them onto your Bench. Shuffle your deck afterward. Treat the new Benched Pokémon as Basic Pokémon.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Mud Shot", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Power Keepers", code: "ex16" } } export default card