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-23", localId: 23, // Card informations name: { en: "Mawile", }, hp: 60, type: [ Type.METAL, ], dexId: 303, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex13/23/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/23/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Feint Attack", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.", }, },{ cost: [ Type.METAL, Type.COLORLESS ], name: { en: "Surprise", }, text: { en: "Choose 1 card from your opponent's hand without looking. Look at the card you chose, then have your opponent shuffle that card into his or her deck.", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Holon Phantoms", code: "ex13" } } export default card