1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +00:00

58 lines
846 B
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 '../Burning Shadows'
const card: Card = {
name: {
en: "Wobbuffet",
fr: "Qulbutoké",
},
illustrator: "nagimiso",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
202,
],
hp: 120,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Shadowy Knot",
fr: "Nœud Sombre",
},
effect: {
en: "This attack does 50 damage for each Colorless in your opponent's Active Pokémon's Retreat Cost.",
fr: "Cette attaque inflige 50 dégâts pour chaque Colorless dans le Coût de Retraite du Pokémon Actif de votre adversaire.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card