1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

102 lines
2.0 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 '../Unleashed'
const card: Card = {
name: {
en: "Metagross",
fr: "Metalosse",
de: "Metagross"
},
illustrator: "Wataru Kawahara",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
376,
],
hp: 130,
types: [
"Psychic",
],
evolveFrom: {
en: "Metang",
fr: "Metang",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Psychic Float",
fr: "Psy-flotteur",
de: "Psychoschweber"
},
effect: {
en: "If you have any Psychic Energy attached to your Active Pokémon, the Retreat Cost for that Pokémon is 0.",
fr: "Si une ou plusieurs cartes Énergie Psychic sont attachées à votre Pokémon Actif, le Coût de retraite de ce dernier est de 0.",
de: "Wenn an dein Aktives Pokémon mindestens 1 -Energie angelegt ist, hat dieses Pokémon Rückzugskosten von 0."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Pulse Blast",
fr: "Explosion vibrante",
de: "Pulsierender Schuss"
},
damage: 60,
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Double Leg Hammer",
fr: "Marteau têtu",
de: "Doppelter Beinhammer"
},
effect: {
en: "Choose 2 of your opponents Benched Pokémon. This attack does 40 damage to each of them. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 2 des Pokémon se trouvant sur le Banc de votre adversaire. Cette attaque inflige 40 dégâts à chacun dentre eux. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
de: "Wähle 2 Pokémon auf der Bank deines Gegners. Dieser Angriff fügt jedem der gewählten Pokémon 40 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 4,
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card