1
0
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:
2024-10-09 23:30:26 +02:00
committed by GitHub
parent bbd5d28dc6
commit 4f2c27937a
176 changed files with 9614 additions and 0 deletions

View 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