1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

66 lines
838 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Neo Destiny'
const card: Card = {
name: {
en: "Togepi",
},
illustrator: "Yuka Morii",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
175,
],
hp: 40,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Charm",
},
effect: {
en: "If the Defending Pokémon attacks during your opponent's next turn, any damage it does is reduced by 10 (before applying Weakness and Resistance).",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Spike Ball Tackle",
},
effect: {
en: "Togepi does 10 damage to itself.",
},
damage: 20,
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card