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

77 lines
979 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 '../Roaring Skies'
const card: Card = {
name: {
en: "Togetic",
fr: "Togetic",
},
illustrator: "Kanako Eo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
176,
],
hp: 80,
types: [
"Fairy",
],
evolveFrom: {
en: "Togepi",
fr: "Togepi",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fairy",
],
name: {
en: "Go Fetch",
fr: "Récup'",
},
effect: {
en: "Shuffle 3 basic Energy cards from your discard pile into your deck.",
fr: "Mélangez 3 cartes Énergie de base de votre pile de défausse avec votre deck.",
},
},
{
cost: [
"Fairy",
"Colorless",
"Colorless",
],
name: {
en: "Fairy Wind",
fr: "Vent Féérique",
},
damage: 40,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card