1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

76 lines
975 B
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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Togetic",
fr: "Togetic",
},
illustrator: "sui",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
176,
],
hp: 80,
types: [
"Fairy",
],
evolveFrom: {
en: "Togepi",
fr: "Togepi",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Energy Present",
fr: "Cadeau dÉnergie",
},
effect: {
en: "Attach an Energy card from your hand to 1 of your Benched Pokémon.",
fr: "Attachez une carte Énergie de votre main à lun de vos Pokémon de Banc.",
},
},
{
cost: [
"Fairy",
"Colorless",
],
name: {
en: "Magical Shot",
fr: "Coup Magique",
},
damage: 30,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card