1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 05:29:55 +00:00

75 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Slowking",
fr: "Roigada",
},
illustrator: "Eri Yamaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
199,
],
hp: 120,
types: [
"Psychic",
],
evolveFrom: {
en: "Slowpoke",
fr: "Ramoloss",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Drift Ashore",
fr: "À la Dérive",
},
effect: {
en: "Search your deck for a card and put it into your hand. Then, shuffle your deck.",
fr: "Cherchez une carte dans votre deck puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Unarmed",
fr: "Désarmé",
},
effect: {
en: "If you have no cards in your hand, ignore all Energy in this attack's cost.",
fr: "Si vous navez aucune carte dans votre main, ignorez toute lÉnergie dans le coût de cette attaque.",
},
damage: 110,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card