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: "sm4-69", localId: 69, // Card informations name: { en: "Escavalier", fr: "Lançargot", }, hp: 120, type: [ Type.METAL, ], dexId: 589, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm4/69/low", fr: "https://assets.tcgdex.net/fr/sm/sm4/69/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm4/69/high", fr: "https://assets.tcgdex.net/fr/sm/sm4/69/high", }, }, evolveFrom: { en: "Karrablast", fr: "Carabing", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.METAL ], name: { en: "Fury Attack", fr: "Furie", }, text: { en: "Flip 3 coins. This attack does 30 damage for each heads.", fr: "Lancez 3 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30 },{ cost: [ Type.METAL, Type.METAL, Type.COLORLESS ], name: { en: "Iron Tackle", fr: "Charge de Fer", }, text: { en: "This Pokémon does 30 damage to itself.", fr: "Ce Pokémon s’inflige 30 dégâts.", }, damage: 130 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Crimson Invasion", code: "sm4" } } export default card