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: "bwp-BW85", localId: "BW85", // Card informations name: { en: "Lucario", fr: "Lucario", }, hp: 100, type: [ Type.FIGHTING, ], dexId: 448, image: { low: { en: "https://assets.tcgdex.net/en/bw/bwp/BW85/low", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW85/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bwp/BW85/high", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW85/high", }, }, evolveFrom: { en: "Riolu", fr: "Riolu", }, tags: [ Tag.STAGE1, ], illustrator: "Masakazu Fukuda", abilities: [{ id: 1422, type: AbilityType.TALENT, name: { en: "Intuition", }, text: { en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may draw 2 cards.", } }], attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fast Punch", fr: "{Ability] Intuition", }, text: { en: "Flip a coin. If heads, this attack does 30 more damage.", fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez piocher 2 cartes.", }, damage: 60 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { fr: "Poing Rapide", }, text: { fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.", }, damage: "60+" }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "BW Black Star Promos", code: "bwp" } } export default card