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: "xy12-55", localId: 55, // Card informations name: { en: "Diglett", fr: "Taupiqueur", }, hp: 40, type: [ Type.FIGHTING, ], dexId: 50, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy12/55/low", fr: "https://assets.tcgdex.net/fr/xy/xy12/55/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy12/55/high", fr: "https://assets.tcgdex.net/fr/xy/xy12/55/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Keiji Kinebuchi", abilities: [{ id: 64, type: AbilityType.TALENT, name: { en: "Submerge", }, text: { en: "As long as this Pokémon is on your Bench, prevent all damage done to this Pokémon by attacks (both yours and your opponent's).", } }], attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Dig Through", fr: "Talent : Submerger", }, text: { en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Tant que ce Pokémon est sur votre Banc, évitez tous les dégâts infligés à ce Pokémon par des attaques (les vôtres et celles de votre adversaire).", }, },{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { fr: "Tunnel Profond", }, text: { fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Evolutions", code: "xy12" } } export default card