import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Armaldo", fr: "Armaldo" }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 348, ], hp: 120, types: [ "Fighting", ], evolveFrom: { en: "Anorith", }, stage: "Stage2", abilities: [ { type: "Poke-BODY", name: { en: "Primal Veil", fr: "Voile primordial" }, effect: { en: "As long as Armaldo is your Active Pokémon, each player can't play any Supporter cards.", fr: "Tant qu'Armaldo est votre Pokémon Actif, ni vous ni votre adversaire ne pouvez jouer de cartes Supporter." }, }, ], attacks: [ { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Blade Arms", fr: "Bras tranchants" }, damage: 60, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card