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: "bw3-49", localId: 49, // Card informations name: { en: "Garbodor", fr: "Miasmax", }, hp: 100, type: [ Type.PSYCHIC, ], dexId: 569, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw3/49/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw3/49/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw3/49/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw3/49/high.png", }, }, evolveFrom: { en: "Trubbish", fr: "Miamiasme", }, tags: [ Tag.STAGE1, ], illustrator: { id: 28, name: "match" }, attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Gentle Wrap", fr: "Enveloppe Douce", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.", }, damage: 30 },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Gunk Shot", fr: "Détricanon", }, text: { en: "The Defending Pokémon is now Poisoned.", fr: "Le Pokémon Défenseur est maintenant Empoisonné.", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Noble Victories", code: "bw3" } } export default card