1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +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

95 lines
2.1 KiB
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 '../Dragon Majesty'
const card: Card = {
name: {
en: "Salazzle",
fr: "Malamandre",
es: "Salazzle",
it: "Salazzle",
pt: "Salazzle",
de: "Amfira"
},
illustrator: "Naoki Saito",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
758,
],
hp: 110,
types: [
"Fire",
],
evolveFrom: {
en: "Salandit",
fr: "Tritox",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Ring of Fire",
fr: "Anneau de Feu",
es: "Anillo de Fuego",
it: "Anello di Fuoco",
pt: "Anel de Fogo",
de: "Feuerring"
},
effect: {
en: "Your opponents Active Pokémon is now Burned. It cant retreat during your opponents next turn.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé. Il ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
es: "El Pokémon Activo de tu rival pasa a estar Quemado. No puede retirarse durante el próximo turno de tu rival.",
it: "Il Pokémon attivo del tuo avversario viene bruciato. Durante il prossimo turno del tuo avversario, quel Pokémon non può ritirarsi.",
pt: "O Pokémon Ativo do seu oponente agora está Queimado. Ele não poderá recuar durante a próxima vez de jogar do seu oponente.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt. Es kann sich während des nächsten Zuges deines Gegners nicht zurückziehen."
},
damage: 20,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Flamethrower",
fr: "Lance-Flammes",
es: "Lanzallamas",
it: "Lanciafiamme",
pt: "Lança-chamas",
de: "Flammenwurf"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
es: "Descarta 1 Energía de este Pokémon.",
it: "Scarta unEnergia assegnata a questo Pokémon.",
pt: "Descarte 1 Energia deste Pokémon.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card