import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex4-30", localId: 30, // Card informations name: { en: "Team Aqua's Mightyena", }, hp: 80, type: [ Type.DARKNESS, ], dexId: 262, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/30/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/30/high", }, }, evolveFrom: {}, tags: [ Tag.STAGE1, ], illustrator: "Shin-ichi Yoshikawa", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Aqua Call", }, text: { en: "Search your deck for Pokémon that has Team Aqua in its name, show up to 3 of them to your opponent, and put them into your hand. Shuffle your deck afterward.", }, },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Wave Splash", }, damage: 30 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Magma vs Team Aqua", code: "ex4" } } export default card