1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 21:09:54 +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

93 lines
1.6 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Melmetal",
fr: "Melmetal",
es: "Melmetal",
it: "Melmetal",
pt: "Melmetal",
de: "Melmetal"
},
illustrator: "NC Empire",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 150,
types: [
"Metal",
],
evolveFrom: {
en: "Meltan",
fr: "Meltan"
},
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Energy Link",
fr: "Chaîne dÉnergie",
es: "Vínculo de Energía",
it: "Legame Energetico",
pt: "Elo de Energia",
de: "Energie-Verbindung"
},
effect: {
en: "Attach an Energy card from your discard pile to this Pokémon.",
fr: "Attachez une carte Énergie de votre pile de défausse à ce Pokémon.",
es: "Une 1 carta de Energía de tu pila de descartes a este Pokémon.",
it: "Assegna a questo Pokémon una carta Energia dalla tua pila degli scarti.",
pt: "Ligue 1 carta de Energia da sua pilha de descarte a este Pokémon.",
de: "Lege 1 Energiekarte aus deinem Ablagestapel an dieses Pokémon an."
},
damage: 30,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Heavy Impact",
fr: "Gros Impact",
es: "Impacto Pesado",
it: "Impatto Pesante",
pt: "Impacto Pesado",
de: "Schwerer Einschlag"
},
damage: 130,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 4,
regulationMark: "D"
}
export default card