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

68 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Salandit",
fr: "Tritox",
es: "Salandit",
it: "Salandit",
pt: "Salandit",
de: "Molunk"
},
illustrator: "Yusuke Ohmura",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
757,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Grass Fire",
fr: "Feu de Brousse",
es: "Quemaplantas",
it: "Fuoco dErba",
pt: "Fogo de Grama",
de: "Pflanzenbrand"
},
effect: {
en: "Discard a Grass Energy from your opponents Active Pokémon.",
fr: "Défaussez une Énergie Grass du Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía Grass del Pokémon Activo de tu rival.",
it: "Scarta unEnergia Grass assegnata al Pokémon attivo del tuo avversario.",
pt: "Descarte 1 Energia Grass do Pokémon Ativo do seu oponente.",
de: "Lege 1 Grass-Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 10,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card