1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

65 lines
790 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: "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