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-41", localId: 41, // Card informations name: { en: "Monferno", fr: "Chimpenfeu", }, hp: 70, type: [ Type.FIRE, ], dexId: 391, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp5/41/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp5/41/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp5/41/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp5/41/high.png", }, }, evolveFrom: { en: "Chimchar", fr: "Ouisticram", }, tags: [ Tag.STAGE1, ], illustrator: { id: 94, name: "Daisuke Ito" }, attacks: [{ cost: [ Type.FIRE ], name: { en: "Fire Fang", fr: "Crocs Feu", }, text: { en: "The Defending Pokémon is now Burned.", fr: "Le Pokémon Défenseur est maintenant Brûlé.", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Mid-air Strike", fr: "Coup en l'air", }, text: { en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires.", }, damage: 30 }], weaknesses: [{ type: Type.WATER, value: "+20" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Majestic Dawn", code: "dp5" } } export default card