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

70 lines
1.1 KiB
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 '../Generations'
const card: Card = {
name: {
en: "Slowpoke",
fr: "Ramoloss",
},
illustrator: "Miki Tanaka",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
79,
],
hp: 50,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Spacing Out",
fr: "Trou d'Mémoire",
},
effect: {
en: "Flip a coin. If heads, heal 10 damage from this Pokémon.",
fr: "Lancez une pièce. Si c'est face, soignez 10 dégâts à ce Pokémon.",
},
},
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "Scavenge",
fr: "Farfouille",
},
effect: {
en: "Discard a Psychic Energy attached to this Pokémon. If you do, put an Item card from your discard pile into your hand.",
fr: "Défaussez une Énergie Psychic attachée à ce Pokémon. Dans ce cas, prenez une carte Objet dans votre pile de défausse et ajoutez-la à votre main.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card