mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
85 lines
1.9 KiB
TypeScript
85 lines
1.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKthrough'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Wobbuffet",
|
||
fr: "Qulbutoké",
|
||
es: "Wobbuffet",
|
||
it: "Wobbuffet",
|
||
pt: "Wobbuffet",
|
||
de: "Woingenau"
|
||
},
|
||
illustrator: "Akira Komayama",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
202,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Mirror Barrier",
|
||
fr: "Bouclier Miroir",
|
||
es: "Barrera Espejo",
|
||
it: "Specchioriflesso",
|
||
pt: "Barreira de Espelho",
|
||
de: "Spiegelsperre"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, prevent all damage done to this Pokémon by attacks during your opponent's next turn.",
|
||
fr: "Lancez une pièce. Si c'est face, évitez tous les dégâts infligés à ce Pokémon par des attaques pendant le prochain tour de votre adversaire.",
|
||
es: "Lanza 1 moneda. Si sale cara, evita todo el daño infligido a este Pokémon por ataques durante el próximo turno de tu rival.",
|
||
it: "Lancia una moneta. Se esce testa, previeni tutti i danni da attacchi inflitti a questo Pokémon durante il prossimo turno del tuo avversario.",
|
||
pt: "Jogue uma moeda. Se sair cara, impedirá todos os danos causados a este Pokémon por ataques durante a próxima vez de jogar do seu oponente.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" verhindere allen Schaden, der diesem Pokémon während des nächsten Zuges deines Gegners durch Angriffe zugefügt wird."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Psychic",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Rolling Tackle",
|
||
fr: "Roulé-Boulé",
|
||
es: "Placaje Giro",
|
||
it: "Rollazione",
|
||
pt: "Golpe de Colisão Rolante",
|
||
de: "Rolltackle"
|
||
},
|
||
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|