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: "ex2-31", localId: 31, // Card informations name: { en: "Azurill", }, hp: 40, type: [ Type.COLORLESS, ], dexId: 298, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex2/31/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/31/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, abilities: [{ id: 23, type: AbilityType.POKEPOWER, name: { en: "Baby Evolution", }, text: { en: "Once during your turn (before your attack), you may put Marill from your hand onto Azurill (this counts as evolving Azurill), and remove all damage counters from Azurill.", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Jump Catch", }, text: { en: "Search your deck for a Trainer card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Sandstorm", code: "ex2" } } export default card