1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,74 @@
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