1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 08:09:54 +00:00

73 lines
942 B
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 '../Plasma Freeze'
const card: Card = {
name: {
en: "Metang",
fr: "Métang",
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
375,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Beldum",
fr: "Terhal",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Psy Bolt",
fr: "Choc Mental",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 10,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Psypunch",
fr: "Coup de Poing Psy",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card