1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06: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.3 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Skuntank",
fr: "Moufflair",
es: "Skuntank",
it: "Skuntank",
pt: "Skuntank",
de: "Skuntank"
},
illustrator: "Studio Bora Inc.",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
435,
],
hp: 120,
types: [
"Darkness",
],
evolveFrom: {
en: "Stunky",
fr: "Moufouette",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Sticky Smokescreen",
fr: "Brouillard Collant",
es: "Pantalla de Humo Pegajoso",
it: "Muro di Fumo Viscoso",
pt: "Cortina de Fumaça Grudenta",
de: "Widriger Nebel"
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponents next turn, your opponent flips 2 coins. If either of them is tails, that attack does nothing.",
fr: "Si le Pokémon Défenseur essaie dattaquer pendant le prochain tour de votre adversaire, ce dernier lance 2 pièces. Sil obtient au moins un côté pile, cette attaque ne fait rien.",
es: "Si el Pokémon Defensor intenta atacar durante el próximo turno de tu rival, este lanza 2 monedas. Si sale cruz en alguna de ellas, ese ataque no hace nada.",
it: "Se durante il prossimo turno del tuo avversario il Pokémon difensore prova ad attaccare, il tuo avversario lancia due volte una moneta. Se esce almeno una volta croce, quellattacco non ha effetto.",
pt: "Se o Pokémon Defensor tentar atacar durante a próxima vez de jogar do seu oponente, seu oponente jogará 2 moedas. Se qualquer uma delas sair coroa, aquele ataque não fará nada.",
de: "Wenn das Verteidigende Pokémon versucht, während des nächsten Zuges deines Gegners anzugreifen, wirft dein Gegner 2 Münzen. Wenn eine oder beide Münzen Zahl zeigen, hat jene Attacke keine Auswirkungen."
},
damage: 50,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Hammer In",
fr: "Enfoncement",
es: "Martillear",
it: "Martello",
pt: "Martelada",
de: "Einhämmern"
},
damage: 100,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card