1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/086.ts

44 lines
765 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Wobbuffet"
},
illustrator: "Masakazu Fukuda",
rarity: "One Diamond",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
en: "It hates light and shock. If attacked, it inflates its\nbody to pump up its counterstrike."
},
stage: "Basic",
attacks: [{
name: {
en: "Reply Strongly"
},
damage: 30,
cost: ["Psychic", "Colorless"],
effect: {
en: "If this Pokémon was damaged by an attack during your opponent's last turn while it was in the Active Spot, this attack does 50 more damage."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 2
}
export default card