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: "pl1-39", localId: 39, // Card informations name: { en: "Torterra", fr: "Torterra", }, hp: 140, type: [ Type.GRASS, ], dexId: 389, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl1/39/low", fr: "https://assets.tcgdex.net/fr/pl/pl1/39/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl1/39/high", fr: "https://assets.tcgdex.net/fr/pl/pl1/39/high", }, }, evolveFrom: { en: "Grotle", fr: "Boskara", }, tags: [ Tag.STAGE2, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Green Blast", fr: "Explosion verte", }, text: { en: "Does 40 damage plus 10 more damage for each Grass Energy attached to all of your Pokémon.", fr: "Inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque Énergie Grass attachée à tous vos Pokémon.", }, damage: 40 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Soothing Scent", fr: "Senteur apaisante", }, text: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, damage: 80 }], weaknesses: [{ type: Type.FIRE, value: "+30" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Platinum", code: "pl1" } } export default card