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: "dp3-58", localId: 58, // Card informations name: { en: "Pidgeotto", fr: "Roucoups", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 17, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp3/58/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp3/58/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp3/58/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp3/58/high.png", }, }, evolveFrom: { en: "Pidgey", fr: "Roucool", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Wing Attack", fr: "Cru-aile", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Quick Attack", fr: "Vive-attaque", }, text: { en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "+20" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Secret Wonders", code: "dp3" } } export default card