1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03: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

42 lines
1.3 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Tormenting Spray",
fr: "Spray Tourmenteur",
es: "Espray Tormento",
it: "Spray Attaccabrighe",
pt: "Spray Atormentador",
de: "Quälendes Spray"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Choisissez une carte au hasard de la main de votre adversaire. Votre adversaire vous montre cette carte. Si cest une carte Supporter, défaussez-la.",
en: "Choose a random card from your opponents hand. Your opponent reveals that card. If its a Supporter card, discard it.",
es: "Elige 1 carta aleatoria de la mano de tu rival. Tu rival enseña esa carta. Si es una carta de Partidario, descártala.",
it: "Scegli una carta a caso dalla mano del tuo avversario. Il tuo avversario mostra quella carta. Se si tratta di una carta Aiuto, scartala.",
pt: "Escolha 1 carta aleatória da mão do seu oponente. Seu oponente revela aquela carta. Se for uma carta de Apoiador, descarte-a.",
de: "Wähle 1 zufällige Karte aus der Hand deines Gegners. Dein Gegner zeigt dir jene Karte. Wenn es eine Unterstützerkarte ist, lege sie auf seinen Ablagestapel."
},
trainerType: "Item",
}
export default card