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.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Ultra Prism'
const card: Card = {
name: {
en: "Crushing Hammer",
fr: "Maillet Écrasant",
es: "Martillo Demoledor",
it: "Martello Dirompente",
pt: "Martelo Esmagador",
de: "Schmetterhammer"
},
illustrator: "Yoshinobu Saito",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Lancez une pièce. Si cest face, défaussez une Énergie de lun des Pokémon de votre adversaire.",
en: "Flip a coin. If heads, discard an Energy from 1 of your opponents Pokémon.",
es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía de 1 de los Pokémon de tu rival.",
it: "Lancia una moneta. Se esce testa, scarta unEnergia assegnata a uno dei Pokémon del tuo avversario.",
pt: "Jogue 1 moeda. Se sair cara, descarte 1 Energia de 1 dos Pokémon do seu oponente.",
de: "Wirf 1 Münze. Lege bei Kopf 1 Energie von 1 Pokémon deines Gegners auf seinen Ablagestapel."
},
trainerType: "Item",
}
export default card