mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
81 lines
1.4 KiB
TypeScript
81 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Power Keepers'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Metang",
|
||
fr: "Metang",
|
||
de: "Metang"
|
||
},
|
||
illustrator: "Tomokazu Komiya",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
375,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Metal",
|
||
],
|
||
evolveFrom: {
|
||
en: "Beldum",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Clear Body",
|
||
fr: "Corps sain",
|
||
de: "Neutraltorso"
|
||
},
|
||
effect: {
|
||
en: "Metang can't be affected by any Special Conditions.",
|
||
fr: "Metang ne peut pas être affecté par des États Spéciaux.",
|
||
de: "Metang kann nicht von Speziellen Zuständen betroffen werden."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Extra Comet Punch",
|
||
fr: "Poing météore",
|
||
de: "Extra Kometenhieb"
|
||
},
|
||
effect: {
|
||
en: "During your next turn, Extra Comet Punch does 30 damage plus 30 more damage.",
|
||
fr: "Lors de votre prochain tour, Poing météore inflige 30 dégâts plus 30 dégâts supplémentaires.",
|
||
de: "In deinem nächsten Zug fügt der Extra Kometenhieb 30 Schadenspunkte plus 30 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "30+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Grass",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|