import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Heracross", }, illustrator: "otumami", rarity: "Uncommon", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Push Down", }, effect: { en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.", }, damage: 30, }, { cost: [ "Grass", "Grass", "Colorless", ], name: { en: "Superpowered Horns", }, damage: 110, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 2, } export default card