1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 14:22:09 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

65 lines
1.2 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"
}
export default card