mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
61
data/Scarlet & Violet/Stellar Crown/057.ts
Normal file
61
data/Scarlet & Violet/Stellar Crown/057.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Slowpoke",
|
||||
fr: "Ramoloss",
|
||||
es: "Slowpoke",
|
||||
it: "Slowpoke",
|
||||
pt: "Slowpoke",
|
||||
de: "Flegmon"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Dangle Tail",
|
||||
fr: "Queue Ballante",
|
||||
es: "Cola Reclamo",
|
||||
it: "Coda Ciondolante",
|
||||
pt: "Cauda Atrapalhada",
|
||||
de: "Baumelschweif"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Put a Pokémon from your discard pile into your hand.",
|
||||
fr: "Ajoutez un Pokémon de votre pile de défausse à votre main.",
|
||||
es: "Pon 1 Pokémon de tu pila de descartes en tu mano.",
|
||||
it: "Prendi un Pokémon dalla tua pila degli scarti e aggiungilo alle carte che hai in mano.",
|
||||
pt: "Coloque um Pokémon da sua pilha de descarte na sua mão.",
|
||||
de: "Nimm 1 Pokémon aus deinem Ablagestapel auf deine Hand."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge",
|
||||
es: "Placaje",
|
||||
it: "Azione",
|
||||
pt: "Investida",
|
||||
de: "Tackle"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user