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: "dp5-68", localId: 68, // Card informations name: { en: "Munchlax", fr: "Goinfrex", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 446, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp5/68/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp5/68/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp5/68/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp5/68/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 8, name: "Masakazu Fukuda" }, abilities: [{ id: 23, type: AbilityType.POKEPOWER, name: { en: "Baby Evolution", fr: "Évolution bébé", }, text: { en: "Once during your turn (before your attack), you may put Snorlax from your hand onto Munchlax (this counts as evolving Munchlax) and remove all damage counters from Munchlax.", fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez placer Ronflex de votre main sur Goinfrex (vous le faites ainsi évoluer) et retirer à Goinfrex tous ses marqueurs de dégât.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Lick", fr: "Léchouille", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "+10" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Majestic Dawn", code: "dp5" } } export default card