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: "dp1-37", localId: 37, // Card informations name: { en: "Snorlax", fr: "Ronflex", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 143, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp1/37/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp1/37/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp1/37/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp1/37/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Block", fr: "Barrage", }, 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 lors du prochain tour de votre adversaire.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Ease Up", fr: "Se détendre", }, text: { en: "Snorlax is now Asleep. If Snorlax is evolved from Munchlax, this attack does 40 damage plus 30 more damage.", fr: "Ronflex est maintenant Endormi. Si Ronflex évolue en Goinfrex, cette attaque inflige 40 dégâts plus 30 dégâts supplémentaires.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "+20" }], retreat: 4, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Diamond & Pearl", code: "dp1" } } export default card