mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
65 lines
790 B
TypeScript
65 lines
790 B
TypeScript
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: "Midori Harada",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
758,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
evolveFrom: {
|
||
en: "Salandit",
|
||
fr: "Tritox",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Fire",
|
||
],
|
||
name: {
|
||
en: "Fire Claws",
|
||
fr: "Griffes Enflammées",
|
||
es: "Garras de Fuego",
|
||
it: "Artigli Infuocati",
|
||
pt: "Garras de Fogo",
|
||
de: "Feuerkrallen"
|
||
},
|
||
|
||
damage: 70,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|