import { Card } from '../../../interfaces' import Set from '../Roaring Skies' const card: Card = { name: { en: "Tranquill", fr: "Colombeau", }, illustrator: "sui", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 520, ], hp: 80, types: [ "Colorless", ], evolveFrom: { en: "Pidove", fr: "Poichigeon", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Fly", fr: "Vol", }, effect: { en: "Flip a coin. If tails, this attack does nothing. If heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponent’s next turn.", fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien. Si c'est face, évitez tous les effets d'attaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire.", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card