mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 21:02:02 +00:00
54 lines
1005 B
TypeScript
54 lines
1005 B
TypeScript
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 |