1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Sun & Moon/Unified Minds/99.ts

82 lines
1018 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Unified Minds'
const card: Card = {
name: {
en: "Salazzle",
fr: "Malamandre",
es: "Salazzle",
it: "Salazzle",
pt: "Salazzle",
de: "Amfira"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
758,
],
hp: 110,
types: [
"Psychic",
],
evolveFrom: {
en: "Salandit",
fr: "Tritox",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Smack",
fr: "Claque",
es: "Palmetazo",
it: "Schiaffo",
pt: "Estalo",
de: "Klatscher"
},
damage: 40,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Slashing Claw",
fr: "Griffe Taillante",
es: "Garra Cuchillazo",
it: "Artigli Laceranti",
pt: "Garra Cortadora",
de: "Schlitzende Klaue"
},
damage: 90,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card