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: "sm6-38", localId: 38, // Card informations name: { en: "Heliolisk", fr: "Iguolta", }, hp: 100, type: [ Type.LIGHTNING, ], dexId: 695, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm6/38/low", fr: "https://assets.tcgdex.net/fr/sm/sm6/38/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm6/38/high", fr: "https://assets.tcgdex.net/fr/sm/sm6/38/high", }, }, evolveFrom: { en: "Helioptile", fr: "Galvaran", }, tags: [ Tag.STAGE1, ], illustrator: "otumami", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Gnaw", fr: "Ronge", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Volt Wave", fr: "Vague Survoltée", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Forbidden Light", code: "sm6" } } export default card