1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

73 lines
1.8 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 '../Steam Siege'
const card: Card = {
name: {
en: "Sneasel",
fr: "Farfuret",
es: "Sneasel",
it: "Sneasel",
pt: "Sneasel",
de: "Sniebel"
},
illustrator: "Hajime Kusajima",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
215,
],
hp: 60,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Nyan Roll",
fr: "Roulade Miaou",
es: "Vuelta Nyan",
it: "Ruota Felina",
pt: "Enrolar do Nyan",
de: "Miaurolle"
},
effect: {
en: "Flip a coin. If heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponents next turn.",
fr: "Lancez une pièce. Si cest face, évitez tous les effets dattaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire.",
es: "Lanza 1 moneda. Si sale cara, evita todos los efectos de los ataques, incluido el daño, infligidos a este Pokémon durante el próximo turno de tu rival.",
it: "Lancia una moneta. Se esce testa, previeni tutti gli effetti degli attacchi, inclusi i danni, inflitti a questo Pokémon durante il prossimo turno del tuo avversario.",
pt: "Jogue uma moeda. Se sair cara, todos os efeitos dos ataques causados a este Pokémon serão prevenidos, inclusive danos, durante a próxima vez de jogar do seu oponente.",
de: "Wirf 1 Münze. Verhindere bei „Kopf“ während des nächsten Zuges deines Gegners alle Effekte von Angriffen, einschließlich Schaden, die diesem Pokémon zugefügt werden."
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card