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: "dp4-39", localId: 39, // Card informations name: { en: "Granbull", fr: "Granbull", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 210, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp4/39/low", fr: "https://assets.tcgdex.net/fr/dp/dp4/39/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp4/39/high", fr: "https://assets.tcgdex.net/fr/dp/dp4/39/high", }, }, evolveFrom: { en: "Snubbull", fr: "Snubbull", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Daunt", fr: "Décourager", }, text: { en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 20 (before applying Weakness and Resistance).", fr: "Lors du prochain tour de votre adversaire, tous dégâts infligés au Pokémon Défenseur par des attaques sont réduits de 20 (avant application de la Faiblesse et de la Résistance).", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rage", fr: "Frénésie", }, text: { en: "Does 40 damage plus 10 more damage for each damage counter on Granbull.", fr: "Inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur Granbull.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "+20" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Great Encounters", code: "dp4" } } export default card