mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
62 lines
928 B
TypeScript
62 lines
928 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Neo Genesis'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Togepi",
|
|
fr: "Togepi",
|
|
de: "Togepi"
|
|
},
|
|
|
|
illustrator: "Naoyo Kimura",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
175,
|
|
],
|
|
|
|
hp: 40,
|
|
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Poison Barb",
|
|
fr: "Barbelés empoisonnés",
|
|
de: "Giftzacken"
|
|
},
|
|
effect: {
|
|
en: "The Defending Pokémon is now Poisoned.",
|
|
fr: "Le Pokémon Défenseur est maintenant Empoisonné",
|
|
de: "Das verteidigende Pokémon ist jetzt vergiftet."
|
|
},
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Psychic",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Un proverbe prétend que celui qui pourra réveiller un Togepi endormi sera récompensé par un grand bonheur."
|
|
}
|
|
}
|
|
|
|
export default card
|