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

68 lines
924 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 '../Southern Islands'
const card: Card = {
name: {
en: "Slowking",
},
illustrator: "Naoyo Kimura",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
199,
],
hp: 70,
types: [
"Psychic",
],
evolveFrom: {
en: "Slowpoke",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Revelation",
},
effect: {
en: "Flip a coin. If heads, search your deck for a Trainer card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Psychic",
},
effect: {
en: "Does 10 damage plus 10 more damage for each Energy card attached to the Defending Pokémon.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card