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: "dp5-29", localId: 29, // Card informations name: { en: "Scizor", fr: "Cizayox", }, hp: 90, type: [ Type.METAL, ], dexId: 212, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp5/29/low", fr: "https://assets.tcgdex.net/fr/dp/dp5/29/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp5/29/high", fr: "https://assets.tcgdex.net/fr/dp/dp5/29/high", }, }, evolveFrom: { en: "Scyther", fr: "Insécateur", }, tags: [ Tag.STAGE1, ], illustrator: "Daisuke Ito", attacks: [{ cost: [ Type.METAL ], name: { en: "Special Blow", fr: "Coup spécial", }, text: { en: "If the Defending Pokémon has any Special Energy cards attached to it, this attack does 30 damage plus 50 more damage.", fr: "Si le Pokémon Défenseur possède des cartes Énergie Spéciale, cette attaque inflige 30 dégâts plus 50 dégâts supplémentaires.", }, damage: 30 },{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "X-Scissor", fr: "Plaie-Croix", }, text: { en: "Flip a coin. If heads, this attack does 50 damage plus 40 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts plus 40 dégâts supplémentaires.", }, damage: 50 }], weaknesses: [{ type: Type.FIRE, value: "+30" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Majestic Dawn", code: "dp5" } } export default card