import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Silvally", fr: "Silvallié", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 773, ], hp: 130, types: [ "Colorless", ], evolveFrom: { en: "Type: Null", fr: "Type:0", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Gear Scan", fr: "Scan d’Engrenage", }, effect: { en: "Search your deck for an Item card, reveal it, and put it into your hand. Then, shuffle your deck.", fr: "Cherchez une carte Objet dans votre deck, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "X-Scissor", fr: "Plaie-Croix", }, effect: { en: "Flip a coin. If heads, this attack does 30 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 90, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], retreat: 1, } export default card