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-88", localId: 88, // Card informations name: { en: "Stoutland", }, hp: 130, type: [ Type.COLORLESS, ], dexId: 508, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/88/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/88/high", }, }, evolveFrom: { en: "Herdier", }, tags: [ Tag.STAGE2, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Special Fang", }, text: { en: "If this Pokémon has any Special Energy attached to it, this attack does 40 more damage.", }, damage: 40 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Ferocious Bellow", }, text: { en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 30 (before applying Weakness and Resistance).", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card