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: "bw5-106", localId: 106, // Card informations name: { en: "Groudon-EX", }, hp: 180, type: [ Type.FIGHTING, ], dexId: 383, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/106/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/106/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Tromp", }, text: { en: "Does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Giant Claw", }, text: { en: "If the Defending Pokémon already has 2 or more damage counters on it, this attack does 40 more damage.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], rarity: Rarity.ULTRARARE, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card