1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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 '../Celestial Storm'
const card: Card = {
name: {
en: "Life Herb",
fr: "Herbe Sauveuse",
es: "Hierba Vida",
it: "Erba Vita",
pt: "Erva da Vida",
de: "Lebenskräuter"
},
illustrator: "Ryo Ueda",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Lancez une pièce. Si cest face, soignez 60 dégâts et retirez tous les États Spéciaux de lun de vos Pokémon.",
en: "Flip a coin. If heads, heal 60 damage and remove all Special Conditions from 1 of your Pokémon.",
es: "Lanza 1 moneda. Si sale cara, cura 60 puntos de daño y elimina todas las Condiciones Especiales de 1 de tus Pokémon.",
it: "Lancia una moneta. Se esce testa, cura uno dei tuoi Pokémon da 60 danni e rimuovi tutte le condizioni speciali che lo influenzano.",
pt: "Jogue 1 moeda. Se sair cara, cure 60 pontos de dano e remova todas as Condições Especiais de 1 dos seus Pokémon.",
de: "Wirf 1 Münze. Heile bei Kopf 60 Schadenspunkte und entferne alle Speziellen Zustände von 1 deiner Pokémon."
},
trainerType: "Item",
}
export default card