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: "bw2-37", localId: 37, // Card informations name: { en: "Swoobat", fr: "Rhinolove", }, hp: 90, type: [ Type.PSYCHIC, ], dexId: 528, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw2/37/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw2/37/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw2/37/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw2/37/high.png", }, }, evolveFrom: { en: "Woobat", fr: "Chovsourir", }, tags: [ Tag.STAGE1, ], illustrator: { id: 49, name: "Shigenori Negishi" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Psyshot", fr: "Piqûre Psy", }, damage: 30 },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Phat Sound", fr: "Cri Perçant", }, text: { en: "Flip 3 coins. This attack does 10 damage times the number of heads to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face à chacun des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Emerging Powers", code: "bw2" } } export default card