1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

77 lines
1.0 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 '../Legend Maker'
const card: Card = {
name: {
en: "Wobbuffet",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
202,
],
hp: 80,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Stages of Evolution",
},
effect: {
en: "As long as Wobbuffet is an Evolved Pokémon, your opponent pays Colorless more to retreat his or her Active Pokémon.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Grind",
},
effect: {
en: "Does 10 damage times the amount of Energy attached to Wobbuffet.",
},
damage: 10,
},
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Shadow Tag",
},
effect: {
en: "Put 7 damage counters on the Defending Pokémon at the end of your opponent's next turn.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card