mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
88 lines
1.4 KiB
TypeScript
88 lines
1.4 KiB
TypeScript
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
|
||
},
|
||
|
||
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
|