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: "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.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/46/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss2/46/high.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss2/46/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 41, name: "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