import { Card } from '../../../interfaces' import Set from '../Furious Fists' const card: Card = { name: { en: "Landorus", fr: "Démétéros", }, illustrator: "PLANETA", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 645, ], hp: 120, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Shout of Power", fr: "Cri de Puissance", }, effect: { en: "Attach a basic Energy card from your discard pile to 1 of your Benched Pokémon.", fr: "Attachez une carte Énergie de base de votre pile de défausse à l’un de vos Pokémon de Banc.", }, damage: 20, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Sky Lariat", fr: "Lasso Céleste", }, damage: 90, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, } export default card