1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

82 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Milcery",
fr: "Crèmy",
es: "Milcery",
it: "Milcery",
pt: "Milcery",
de: "Hokumil"
},
illustrator: "Mina Nakai",
rarity: "Common",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Aromatherapy",
fr: "Aromathérapie",
es: "Aromaterapia",
it: "Aromaterapia",
pt: "Aromaterapia",
de: "Aromakur"
},
effect: {
en: "Heal 10 damage from each of your Pokémon.",
fr: "Soignez 10 dégâts de chacun de vos Pokémon.",
es: "Cura 10 puntos de daño a cada uno de tus Pokémon.",
it: "Cura ciascuno dei tuoi Pokémon da 10 danni.",
pt: "Cure 10 pontos de dano de cada um dos seus Pokémon.",
de: "Heile 10 Schadenspunkte bei jedem deiner Pokémon."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 20,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
hp: 50,
types: ["Psychic"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card