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: "bw2-72", localId: 72, // Card informations name: { en: "Ferrothorn", fr: "Noacier", }, hp: 90, type: [ Type.METAL, ], dexId: 598, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw2/72/low", fr: "https://assets.tcgdex.net/fr/bw/bw2/72/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw2/72/high", fr: "https://assets.tcgdex.net/fr/bw/bw2/72/high", }, }, evolveFrom: { en: "Ferroseed", fr: "Grindur", }, tags: [ Tag.STAGE1, ], illustrator: "Shin Nagasawa", attacks: [{ cost: [ Type.METAL ], name: { en: "Steel Feelers", fr: "Tentacules d'Acier", }, text: { en: "Flip 3 coins. This attack does 30 damage times the number of heads.", fr: "Lancez 3 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30 },{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Gyro Ball", fr: "Gyroballe", }, text: { en: "Switch this Pokémon with 1 of your Benched Pokémon. Then, your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", fr: "Échangez ce Pokémon avec 1 de vos Pokémon de Banc. Ensuite, votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.", }, damage: 60 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Emerging Powers", code: "bw2" } } export default card