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: "xy1-63", localId: 63, // Card informations name: { en: "Lunatone", fr: "Séléroc", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 337, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy1/63/low", fr: "https://assets.tcgdex.net/fr/xy/xy1/63/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy1/63/high", fr: "https://assets.tcgdex.net/fr/xy/xy1/63/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "kawayoo", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Double Draw", fr: "Double Pioche", }, text: { en: "Draw 2 cards.", fr: "Piochez 2 cartes.", }, },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Moonblast", fr: "Pouvoir Lunaire", }, text: { en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 20 (before applying Weakness and Resistance).", fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés par des attaques du Pokémon Défenseur sont réduits de 20 (avant application de la Faiblesse et de la Résistance).", }, damage: 20 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "XY", code: "xy1" } } export default card