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: "sm1-81", localId: 81, // Card informations name: { en: "Carvanha", fr: "Carvanha", }, hp: 60, type: [ Type.DARKNESS, ], dexId: 318, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm1/81/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm1/81/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm1/81/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm1/81/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 7, name: "Sumiyoshi Kizuki" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Gnaw Through", fr: "Grignotage", }, text: { en: "Discard all Pokémon Tool cards from your opponent's Active Pokémon.", fr: "Défaussez toutes les cartes Outil Pokémon du Pokémon Actif de votre adversaire.", }, },{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Bite", fr: "Morsure", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Sun & Moon", code: "sm1" } } export default card