1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* 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
2021-10-26 10:40:03 +02:00

110 lines
1.9 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",
es: "Meltan",
it: "Meltan",
pt: "Meltan",
de: "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",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "At the end of its life-span, Melmetal will rust and fall apart. The small shards left behind will eventually be reborn as Meltan."
}
}
export default card