1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
2024-12-19 11:52:36 +01:00

82 lines
1.2 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 '../Delta Species'
const card: Card = {
name: {
en: "Metang δ",
fr: "Metang δ",
de: "Metang"
},
illustrator: "Hajime Kusajima",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
375,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Beldum",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Sharp Claws",
fr: "Griffes affûtées",
de: "Sharp Claws"
},
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires.",
de: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage."
},
damage: "20+",
},
{
cost: [
"Colorless",
"Colorless",
"Lightning",
],
name: {
en: "Magnetic Blast",
fr: "Explosion magnétique",
de: "Magnetic Blast"
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
}
export default card