1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 14:22:09 +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

94 lines
1.4 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Metang",
fr: "Métang",
es: "Metang",
it: "Metang",
pt: "Metang",
de: "Metang"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
375,
],
hp: 90,
types: [
"Metal",
],
evolveFrom: {
en: "Beldum",
fr: "Terhal",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Ram",
fr: "Collision",
es: "Apisonar",
it: "Carica",
pt: "Aríete",
de: "Ramme"
},
damage: 20,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Core Beam",
fr: "Faisceau Central",
es: "Rayo Nuclear",
it: "Raggio Nucleico",
pt: "Feixe do Núcleo",
de: "Kernstrahl"
},
effect: {
en: "Discard a Metal Energy from this Pokémon.",
fr: "Défaussez une Énergie Metal de ce Pokémon.",
es: "Descarta 1 Energía Metal de este Pokémon.",
it: "Scarta unEnergia Metal assegnata a questo Pokémon.",
pt: "Descarte 1 Energia Metal deste Pokémon.",
de: "Lege 1 Metal-Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card