import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "bw8-28", localId: 28, // Card informations name: { en: "Mamoswine", fr: "Mammochon", }, hp: 150, type: [ Type.WATER, ], dexId: 473, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw8/28/low", fr: "https://assets.tcgdex.net/fr/bw/bw8/28/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw8/28/high", fr: "https://assets.tcgdex.net/fr/bw/bw8/28/high", }, }, evolveFrom: { en: "Piloswine", fr: "Cochignon", }, tags: [ Tag.STAGE2, ], illustrator: "match", attacks: [{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Frost Stone", fr: "Roc Gelé", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage and the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires et le Pokémon Défenseur est maintenant Paralysé.", }, damage: 50 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Continuous Headbutt", fr: "Coup d'Boule Sans Fin", }, text: { en: "Flip a coin until you get tails. This attack does 90 damage times the number of heads.", fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 90 dégâts multipliés par le nombre de côtés face.", }, damage: 90 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Plasma Storm", code: "bw8" } } export default card