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: "bwp-BW15", localId: "BW15", // Card informations name: { en: "Pidove", fr: "Poichigeon", }, hp: 50, type: [ Type.COLORLESS, ], dexId: 519, image: { low: { en: "https://assets.tcgdex.net/en/bw/bwp/BW15/low.png", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW15/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bwp/BW15/high.png", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW15/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 15, name: "Naoki Saito" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Gust", fr: "Tornade", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "BW Black Star Promos", code: "bwp" } } export default card