1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-05 00:52:08 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
1.1 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Moomoo Milk",
fr: "Lait Meumeu",
es: "Leche Mu-mu",
it: "Latte Mumu",
pt: "Leite de Moomoo",
de: "Kuhmuh-Milch"
},
illustrator: "Ayaka Yoshida",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Choisissez lun de vos Pokémon, puis lancez 2 pièces. Pour chaque côté face, soignez 30 dégâts à ce Pokémon-là.",
en: "Choose 1 of your Pokémon, and then flip 2 coins. For each heads, heal 30 damage from that Pokémon.",
es: "Elige 1 de tus Pokémon y, después, lanza 2 monedas. Por cada cara, cura 30 puntos de daño a ese Pokémon.",
it: "Scegli uno dei tuoi Pokémon, quindi lancia due volte una moneta. Ogni volta che esce testa, cura quel Pokémon da 30 danni.",
pt: "Escolha 1 dos seus Pokémon e então jogue 2 moedas. Para cada cara, cure 30 pontos de dano daquele Pokémon.",
de: "Wähle 1 deiner Pokémon und wirf anschließend 2 Münzen. Heile pro Kopf 30 Schadenspunkte bei jenem Pokémon."
},
trainerType: "Item",
}
export default card