import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Vibrava", }, illustrator: "Sumiyoshi Kizuki", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 80, types: [ "Fighting", ], evolveFrom: { en: "Trapinch", }, attacks: [ { cost: [ "Fighting", ], name: { en: "Sand Pulse", }, effect: { en: "This attack also does 10 damage to each of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card