1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 06:09:50 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/015.ts

44 lines
644 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Salazzle"
},
illustrator: "Shibuzoh.",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Fire"],
evolveFrom: {
en: "Salandit"
},
description: {
en: "Salazzle makes its opponents light-headed with\npoisonous gas, then captivates them with alluring\nmovements to turn them into loyal servants."
},
stage: "Stage1",
attacks: [{
name: {
en: "Combustion"
},
damage: 40,
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 0
}
export default card