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: "dp4-44", localId: 44, // Card informations name: { en: "Loudred", fr: "Ramboum", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 294, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp4/44/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp4/44/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp4/44/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp4/44/high.png", }, }, evolveFrom: { en: "Whismur", fr: "Chuchmur", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Bass Control", fr: "Super basse", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Choisissez 1 des Pokémon de votre adversaire. Cette attaque lui inflige 20 dégâts. (Vous ne pouvez pas appliquer la Faiblesse ou la Résistance aux Pokémon de Banc).", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Stomp", fr: "Écrasement", }, text: { en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "+20" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Great Encounters", code: "dp4" } } export default card