1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

71 lines
1.2 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Wobbuffet",
fr: "Qulbutoke",
de: "Woingenau"
},
illustrator: "Yuka Morii",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
202,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Double Return",
fr: "Double retour",
de: "Doppelbonus"
},
effect: {
en: "Flip a coin. If heads, this attack does 20 damage times the number of damage counters on Wobbuffet.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 20 dégâts multipliés par le nombre de marqueurs de dégâts sur Qulbutoke.",
de: "Wirf eine Münze. Bei \"Kopf\" fügt dieser Angriff 20 Schadenspunkte mal der Anzahl an Schadensmarken auf Woingenau zu."
},
damage: "20x",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
description: {
en: "It hates light and shock. If attacked, it inflates its body to build up its counterstrike."
},
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card