1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32:11 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

70 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Crèmy",
en: "Milcery",
es: "Milcery",
it: "Milcery",
pt: "Milcery",
de: "Hokumil"
},
illustrator: "Motofumi Fujiwara",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 50,
types: ["Psychic"],
attacks: [{
name: {
fr: "Aromathérapie",
en: "Aromatherapy",
es: "Aromaterapia",
it: "Aromaterapia",
pt: "Aromaterapia",
de: "Aromakur"
},
effect: {
fr: "Soignez 10 dégâts de chacun de vos Pokémon.",
en: "Heal 10 damage from each of your 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: ["Colorless"]
}, {
name: {
fr: "Charge",
en: "Tackle",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 20,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "D",
stage: "Basic",
description: {
en: "This Pokémon was born from sweet-smelling particles in the air. Its body is made of cream."
}
}
export default card