import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Rowlet", }, illustrator: "HYOGONOSUKE", rarity: "Common", category: "Pokemon", set: Set, hp: 50, types: [ "Grass", ], abilities: [ { type: "Ability", name: { en: "Sky Circus", }, effect: { en: "If you played Bird Keeper from your hand during this turn, ignore all Energy in this Pokémon’s attack costs.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Wind Shard", }, effect: { en: "This attack does 60 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card