1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

77 lines
1.9 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Wobbuffet",
fr: "Qulbutoké",
es: "Wobbuffet",
it: "Wobbuffet",
pt: "Wobbuffet",
de: "Woingenau"
},
rarity: "Common",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
stage: "Basic",
illustrator: "Anesaki Dynamic",
attacks: [{
name: {
en: "Mirror Pain",
fr: "Douleur Miroir",
es: "Dolor Espejo",
it: "Pena Riflessa",
pt: "Mirror Pain",
de: "Schmerzspiegel"
},
effect: {
en: "Put damage counters on your opponents Active Pokémon equal to the number of damage counters on 1 of your Benched Pokémon.",
fr: "Placez autant de marqueurs de dégâts sur le Pokémon Actif de votre adversaire quil y a de marqueurs de dégâts sur lun de vos Pokémon de Banc.",
es: "Pon una cantidad de contadores de daño en el Pokémon Activo de tu rival equivalente a la cantidad de contadores de daño en 1 de tus Pokémon en Banca.",
it: "Metti sul Pokémon attivo del tuo avversario un numero di segnalini danno pari al numero di segnalini danno presenti su uno dei Pokémon della tua panchina.",
pt: "Put damage counters on your opponents Active Pokémon equal to the number of damage counters on 1 of your Benched Pokémon.",
de: "Lege Schadensmarken auf das Aktive Pokémon deines Gegners entsprechend der Anzahl der Schadensmarken auf 1 Pokémon auf deiner Bank."
},
cost: ["Colorless", "Colorless"]
}, {
name: {
en: "Headbutt Bounce",
fr: "Culbute Surprise",
es: "Bote Cabezazo",
it: "Rimbalzo Bottintesta",
pt: "Headbutt Bounce",
de: "Abrupter Kopfstoß"
},
damage: 70,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2
}
export default card