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:
74
data/Sun & Moon/Burning Shadows/48.ts
Normal file
74
data/Sun & Moon/Burning Shadows/48.ts
Normal 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 n’avez 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
|
Reference in New Issue
Block a user