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: "pl1-43", localId: 43, // Card informations name: { en: "Carnivine", fr: "Vortente", }, hp: 80, type: [ Type.GRASS, ], dexId: 455, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl1/43/low.png", fr: "https://assets.tcgdex.net/fr/pl/pl1/43/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl1/43/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl1/43/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.GRASS ], name: { en: "Stretch Vine", fr: "Longue Liane", }, text: { en: "Choose 2 of your opponent's Benched Pokémon. This attack does 10 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Choisissez 2 des Pokémon de Banc de votre adversaire. Cette attaque inflige 10 dégâts à chacun. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Absorb", fr: "Vol-vie", }, text: { en: "Remove 2 damage counters from Carnivine.", fr: "Retirez à Vortente 2 marqueurs de dégât.", }, damage: 20 },{ cost: [ Type.GRASS, Type.GRASS ], name: { en: "Vine Extract", fr: "Extrait de plante", }, text: { en: "If the Defending Pokémon already has any damage counters on it, the Defending Pokémon is now Burned and Poisoned.", fr: "Si le Pokémon Défenseur possède déjà des marqueurs de dégât, il est maintenant Brûlé et Empoisonné.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], resistances: [{ type: Type.WATER, value: "-20" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Platinum", code: "pl1" } } export default card