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: "xy12-7", localId: 7, // Card informations name: { en: "Beedrill", fr: "Dardargnan", }, hp: 120, type: [ Type.GRASS, ], dexId: 15, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy12/7/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/7/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy12/7/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/7/high.png", }, }, evolveFrom: { en: "Kakuna", fr: "Coconfort", }, tags: [ Tag.STAGE2, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.GRASS ], name: { en: "Poison Sting", fr: "Dard-Venin", }, text: { en: "Your opponent's Active Pokémon is now Poisoned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", }, damage: 30 },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Swarming Sting", fr: "Essaim Piqûre", }, text: { en: "This attack does 40 damage times the number of Beedrill you have in play to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 40 dégâts, multipliés par le nombre de Dardargnan que vous avez en jeu, à l’un des Pokémon de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Evolutions", code: "xy12" } } export default card