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: "bw6-53", localId: 53, // Card informations name: { en: "Trubbish", fr: "Miamiasme", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 568, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/53/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/53/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/53/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/53/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 18, name: "Tomokazu Komiya" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Pound", fr: "Écras'Face", }, damage: 20 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Poison Gas", fr: "Gaz Toxik", }, text: { en: "The Defending Pokémon is now Poisoned.", fr: "Le Pokémon Défenseur est maintenant Empoisonné.", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card