1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 18:27:51 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

54 lines
1.7 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Horsea",
fr: "Hypotrempe",
es: "Horsea",
it: "Horsea",
pt: "Horsea",
de: "Seeper"
},
illustrator: "Anesaki Dynamic",
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Water"],
attacks: [{
name: {
en: "Smokescreen",
fr: "Brouillard",
es: "Pantalla de Humo",
it: "Muro di Fumo",
pt: "Cortina de Fumaça",
de: "Rauchwolke"
},
effect: {
en: "During your opponents next turn, if the Defending Pokémon tries to attack, your opponent flips a coin. If tails, that attack doesnt happen.",
fr: "Pendant le prochain tour de votre adversaire, si le Pokémon Défenseur essaie dattaquer, votre adversaire lance une pièce. Si cest pile, lattaque nest pas lancée.",
es: "Durante el próximo turno de tu rival, si el Pokémon Defensor intenta atacar, tu rival lanza 1 moneda. Si sale cruz, ese ataque no se hace.",
it: "Se durante il prossimo turno del tuo avversario il Pokémon difensore prova ad attaccare, il tuo avversario lancia una moneta. Se esce croce, quellattacco non ha luogo.",
pt: "Durante o próximo turno do seu oponente, se o Pokémon Defensor tentar atacar, seu oponente jogará 1 moeda. Se sair coroa, aquele ataque não acontecerá.",
de: "Wenn das Verteidigende Pokémon während des nächsten Zuges deines Gegners versucht anzugreifen, wirft dein Gegner 1 Münze. Bei Zahl wird jene Attacke nicht ausgeführt."
},
damage: 10,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card