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: "xy9-9", localId: 9, // Card informations name: { en: "Durant", fr: "Fermite", }, hp: 70, type: [ Type.GRASS, ], dexId: 632, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy9/9/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/9/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/9/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/9/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.GRASS ], name: { en: "Mountain Munch", fr: "Dévore-Montagne", }, text: { en: "Discard the top card of your opponent's deck.", fr: "Défaussez la carte du dessus du deck de votre adversaire.", }, damage: 10 },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Scrape Down", fr: "Racleur", }, text: { en: "If this Pokémon has any damage counters on it, discard the top 4 cards of your opponent's deck.", fr: "Si ce Pokémon a des marqueurs de dégâts, défaussez les 4 cartes du dessus du deck de votre adversaire.", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "BREAKpoint", code: "xy9" } } export default card