import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Froslass", }, illustrator: "TOKIYA", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 478, ], types: [ "Water", ], evolveFrom: { en: "Snorunt", }, stage: "Stage1", abilities: [ { type: "Poke-POWER", name: { en: "Snow Gift", }, effect: { en: "Once during your turn, when you play Froslass from your hand to evolve 1 of your Pokémon, you may search your deck for any 1 card and put it into your hand. Shuffle your deck afterward.", }, }, ], attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Ground Frost", }, effect: { en: "If there is any Stadium card in play, this attack does nothing.", }, damage: 50, }, ], weaknesses: [ { type: "Metal", value: "+20" }, ], retreat: 1, } export default card