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: "ex14-89", localId: 89, // Card informations name: { en: "Aggron ex", }, hp: 150, type: [ Type.METAL, ], dexId: 306, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex14/89/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex14/89/high", }, }, evolveFrom: { en: "Lairon", }, tags: [ Tag.EX, ], illustrator: "Ryo Ueda", abilities: [{ id: 756, type: AbilityType.POKEBODY, name: { en: "Intimidating Armor", }, text: { en: "As long as Aggron ex is your Active Pokémon, your opponent's Basic Pokémon can't attack or use any Poké-Powers or Poké-Bodies.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Split Bomb", }, text: { en: "Choose 2 of your opponent's Pokémon. This attack does 30 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.METAL, Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mega Burn", }, text: { en: "During your next turn, Aggron ex can't use Mega Burn.", }, damage: 100 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Crystal Guardians", code: "ex14" } } export default card