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

70 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. 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 '../Great Encounters'
const card: Card = {
name: {
en: "Slowpoke",
fr: "Ramoloss",
},
illustrator: "Saya Tsuruta",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
79,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Rest",
fr: "Repos",
},
effect: {
en: "Remove all Special Conditions and 3 damage counters from Slowpoke. Slowpoke is now Asleep.",
fr: "Retirez à Ramoloss tous ses États Spéciaux et 3 marqueurs de dégât. Ramoloss est maintenant Endormi.",
},
},
{
cost: [
"Water",
],
name: {
en: "Tumble Over",
fr: "Culbuter",
},
effect: {
en: "Slowpoke can't attack during your next turn.",
fr: "Ramoloss ne peut pas attaquer lors de votre prochain tour.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
retreat: 2,
}
export default card