1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00

feat: Add Pocket promo cards 74 to 92 (#829)

This commit is contained in:
adresa97
2025-07-31 10:23:41 +02:00
committed by GitHub
parent 7c2a69711e
commit dba61e87e7
19 changed files with 938 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Alcremie",
es: "Alcremie"
},
illustrator: "Tika Matsuno",
rarity: "One Star",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
evolveFrom: {
en: "Milcery",
es: "Milcery"
},
description: {
en: "When it trusts a Trainer, it will treat them\nto berries it's decorated with cream.",
es: "Obsequia bayas decoradas con nata a\naquellos Entrenadores en los que confía."
},
stage: "Stage1",
attacks: [{
name: {
en: "Sweets Overload",
es: "Dulzor Extremo"
},
damage: 40,
cost: ["Colorless"],
effect: {
en: "This attack does 40 damage for each time your Pokémon used Sweets Relay during this game.",
es: "Este ataque hace 40 puntos de daño por cada vez que tus Pokémon hayan usado Relevo Dulce durante esta partida."
}
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 1,
boosters: ["vol10"]
}
export default card