1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

69 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Great Encounters'
const card: Card = {
name: {
en: "Togepi",
fr: "Togepi",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
175,
],
hp: 50,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Yawn",
fr: "Baillement",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
},
{
cost: [
"Colorless",
],
name: {
en: "Find a friend",
fr: "Trouver un ami",
},
effect: {
en: "Flip a coin. If heads, search your deck for a Pokémon, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
fr: "Lancez une pièce. Si c'est face, choisissez un Pokémon dans votre deck, montrez-le à votre adversaire et placez-le dans votre main. Ensuite, mélangez votre deck.",
},
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
retreat: 1,
}
export default card