import { Card } from '../../../interfaces' import Set from '../Legend Maker' const card: Card = { name: { en: "Aggron", }, illustrator: "Hisao Nakamura", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 306, ], hp: 110, types: [ "Metal", ], evolveFrom: { en: "Lairon", }, stage: "Stage2", attacks: [ { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Heavy Blow", }, effect: { en: "Does 70 damage minus 10 damage for each damage counter on Aggron. If Aggron has any React Energy cards attached to it, this attack does 70 damage instead.", }, damage: 70, }, { cost: [ "Fighting", "Metal", "Colorless", "Colorless", ], name: { en: "Bound Crush", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 60 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) During your next turn, Aggron can't use Bound Crush.", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card