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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/88/high.png", }, }, evolveFrom: { en: "Herdier", }, tags: [ Tag.STAGE2, ], illustrator: { id: 32, name: "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