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: "bw1-39", localId: 39, // Card informations name: { en: "Alomomola", fr: "Mamanbo", }, hp: 100, type: [ Type.WATER, ], dexId: 594, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw1/39/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw1/39/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw1/39/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw1/39/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 23, name: "Naoyo Kimura" }, attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Water Pulse", fr: "Vibraqua", }, text: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hydro Pump", fr: "Hydrocanon", }, text: { en: "Does 10 more damage for each Water Energy attached to this Pokémon.", fr: "Inflige 10 dégâts supplémentaires pour chaque Énergie Water attachée à ce Pokémon.", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 3, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Black & White", code: "bw1" } } export default card