import { Card } from '../../../interfaces' import Set from '../Emerging Powers' const card: Card = { name: { en: "Tranquill", fr: "Colombeau", es: "Tranquill", it: "Tranquill", pt: "Tranquill", de: "Navitaub" }, illustrator: "Midori Harada", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 520, ], hp: 70, types: [ "Colorless", ], evolveFrom: { en: "Pidove", fr: "Poichigeon", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Claw", fr: "Ergots", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.", }, damage: 30, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Wing Attack", fr: "Cru-Aile", }, damage: 50, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card