1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

feat: Add Crown Zenith (#416)

This commit is contained in:
2023-01-22 19:11:31 +01:00
committed by GitHub
parent a2db003735
commit 9074fbf511
231 changed files with 13403 additions and 0 deletions

View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../Crown Zenith"
const card: Card = {
set: Set,
name: {
en: "Metang",
fr: "Métang",
es: "Metang",
it: "Metang",
pt: "Metang",
de: "Metang"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 100,
types: ["Metal"],
evolveFrom: {
en: "Beldum",
fr: "Terhal",
es: "Beldum",
it: "Beldum",
pt: "Beldum",
de: "Tanhel"
},
stage: "Stage1",
attacks: [{
cost: ["Metal", "Colorless"],
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 30 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
es: "Lanza 2 monedas. Este ataque hace 30 puntos de daño más por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 30 danni in più ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 30 pontos de dano a mais para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 30 Schadenspunkte mehr pro Kopf zu."
},
damage: "30+"
}],
retreat: 2,
regulationMark: "F"
}
export default card