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: "ex13-74", localId: 74, // Card informations name: { en: "Omanyte δ", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 138, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex13/74/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/74/high.png", }, }, evolveFrom: { en: "Mysterious Fossil", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Collect", }, text: { en: "Draw 3 cards.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Water Arrow", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Holon Phantoms", code: "ex13" } } export default card