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-13", localId: 13, // Card informations name: { en: "Beedrill", fr: "Dardargnan", }, hp: 110, type: [ Type.GRASS, ], dexId: 15, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp4/13/low", fr: "https://assets.tcgdex.net/fr/dp/dp4/13/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp4/13/high", fr: "https://assets.tcgdex.net/fr/dp/dp4/13/high", }, }, evolveFrom: { en: "Kakuna", fr: "Coconfort", }, tags: [ Tag.STAGE2, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.GRASS ], name: { en: "Band Attack", fr: "Attaque de groupe", }, text: { en: "Does 30 damage times the number of Beedrill you have in play.", fr: "Inflige 30 dégâts multipliés par le nombre de Dardargnan que vous avez en jeu.", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Twineedle", fr: "Double-dard", }, text: { en: "Flip 2 coins. This attack does 50 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de faces.", }, damage: 50 }], weaknesses: [{ type: Type.FIRE, value: "+30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Great Encounters", code: "dp4" } } export default card