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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/55/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy12/55/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/55/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 11, name: "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