1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

100 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",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card