1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

44 lines
700 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Palossand"
},
illustrator: "OOYAMA",
rarity: "Three Diamond",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
evolveFrom: {
en: "Sandygast"
},
description: {
en: "The terrifying Palossand drags smaller Pokémon into its sandy body. Once its victims are trapped, it drains them of their vitality whenever it pleases."
},
stage: "Stage1",
attacks: [{
name: {
en: "Spooky Shot"
},
damage: 70,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 3
}
export default card