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:
54
data/Pokémon TCG Pocket/Promos-A/087.ts
Normal file
54
data/Pokémon TCG Pocket/Promos-A/087.ts
Normal 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
|
Reference in New Issue
Block a user