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

76 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Celestial Storm'
const card: Card = {
name: {
en: "Metang",
fr: "Métang",
es: "Metang",
it: "Metang",
pt: "Metang",
de: "Metang"
},
illustrator: "SATOSHI NAKAI",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
375,
],
hp: 90,
types: [
"Metal",
],
evolveFrom: {
en: "Beldum",
fr: "Terhal",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Bullet Punch",
fr: "Pisto-Poing",
es: "Puño Bala",
it: "Pugnoscarica",
pt: "Soco Projétil",
de: "Patronenhieb"
},
effect: {
en: "Flip 2 coins. This attack does 20 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.",
es: "Lanza 2 monedas. Este ataque hace 20 puntos de daño más por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 20 danni in più ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 20 pontos de dano a mais para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 20 Schadenspunkte mehr pro Kopf zu."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card