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: "dp1-26", localId: 26, // Card informations name: { en: "Floatzel", fr: "Mustéflott", }, hp: 90, type: [ Type.WATER, ], dexId: 419, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp1/26/low", fr: "https://assets.tcgdex.net/fr/dp/dp1/26/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp1/26/high", fr: "https://assets.tcgdex.net/fr/dp/dp1/26/high", }, }, evolveFrom: { en: "Buizel", fr: "Mustébouée", }, tags: [ Tag.STAGE1, ], illustrator: "Masahiko Ishii", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Screw Tail", fr: "Queue cloutée", }, text: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.", }, damage: 30 },{ cost: [ Type.WATER, Type.WATER ], name: { en: "Water Gun", fr: "Pistolet à O", }, text: { en: "Does 40 damage plus 20 more damage for each Water Energy attached to Floatzel but not used to pay for this attack's Energy cost. You can't add more than 40 damage in this way.", fr: "Inflige 40 dégâts plus 20 dégâts supplémentaires pour chaque Énergie Water attachée à Mustéflottqui n'a pas été utilisée pour payer le Coût en Énergie de cette attaque. Vous ne pouvez pas ajouter plus de 40 dégâts de cette façon.", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "+20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Diamond & Pearl", code: "dp1" } } export default card