1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +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

92 lines
2.5 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Salazzle",
fr: "Malamandre",
es: "Salazzle",
it: "Salazzle",
pt: "Salazzle",
de: "Amfira"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
758,
],
hp: 110,
types: [
"Psychic",
],
evolveFrom: {
en: "Salandit",
fr: "Tritox",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Nasty Plot",
fr: "Machination",
es: "Maquinación",
it: "Congiura",
pt: "Trama Maldosa",
de: "Ränkeschmied"
},
effect: {
en: "Search your deck for up to 2 cards and put them into your hand. Then, shuffle your deck.",
fr: "Cherchez jusquà 2 cartes dans votre deck et ajoutez-les à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 2 cartas y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a due carte e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 2 cartas no seu baralho e coloque-as na sua mão. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach bis zu 2 Karten und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
},
{
cost: [
"Psychic",
],
name: {
en: "Severe Poison",
fr: "Poison Violent",
es: "Veneno Grave",
it: "Maloveleno",
pt: "Veneno Forte",
de: "Pures Gift"
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned. Put 4 damage counters instead of 1 on that Pokémon between turns.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Placez 4 marqueurs de dégâts au lieu dun sur le Pokémon ciblé entre chaque tour.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Pon 4 contadores de daño en vez de 1 en ese Pokémon entre turnos.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato. Tra un turno e laltro, metti quattro segnalini danno invece di uno su quel Pokémon.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Coloque 4 contadores de dano ao invés de 1 naquele Pokémon entre as vezes de jogar.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Lege zwischen den Zügen 4 Schadensmarken anstelle von 1 Schadensmarke auf jenes Pokémon."
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card