1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +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.8 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Wattapik",
en: "Pincurchin",
es: "Pincurchin",
it: "Pincurchin",
pt: "Pincurchin",
de: "Britzigel"
},
illustrator: "Motofumi Fujiwara",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
attacks: [{
name: {
fr: "Épines Choquantes",
en: "Shocking Needles",
es: "Púas Electrizantes",
it: "Spine Fulminanti",
pt: "Espinhos Chocantes",
de: "Schockende Stacheln"
},
effect: {
fr: "Lancez 4 pièces. Cette attaque inflige 30 dégâts pour chaque côté face. Si vous obtenez au moins 2 côtés face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
en: "Flip 4 coins. This attack does 30 damage for each heads. If at least 2 of them are heads, your opponents Active Pokémon is now Paralyzed.",
es: "Lanza 4 monedas. Este ataque hace 30 puntos de daño por cada cara. Si sale cara en por lo menos 2 de ellas, el Pokémon Activo de tu rival pasa a estar Paralizado.",
it: "Lancia quattro volte una moneta. Questo attacco infligge 30 danni ogni volta che esce testa. Se esce almeno due volte testa, il Pokémon attivo del tuo avversario viene paralizzato.",
pt: "Jogue 4 moedas. Este ataque causa 30 pontos de dano para cada cara. Se pelo menos 2 delas saírem cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
de: "Wirf 4 Münzen. Diese Attacke fügt 30 Schadenspunkte pro Kopf zu. Wenn mindestens 2 Münzen Kopf zeigen, ist das Aktive Pokémon deines Gegners jetzt paralysiert."
},
damage: "30×",
cost: ["Lightning", "Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card