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: "hgss2-46", localId: 46, // Card informations name: { en: "Carnivine", fr: "Vortente", }, hp: 80, type: [ Type.GRASS, ], dexId: 455, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss2/46/low", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/46/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss2/46/high", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/46/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Wataru Kawahara", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Drawup Power", fr: "Pouvoir bloquant", }, text: { en: "Search your deck for an Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", fr: "Cherchez une carte Énergie dans votre deck, montrez-la à votre adversaire, puis ajoutez-la à votre main. Mélangez ensuite votre deck.", }, },{ cost: [ Type.GRASS ], name: { en: "Spit Up", fr: "Relâche", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.WATER, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HS—Unleashed", code: "hgss2" } } export default card