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

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,77 @@
import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Metagross",
fr: "Metalosse",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
376,
],
hp: 130,
types: [
"Metal",
],
evolveFrom: {
en: "Metang",
fr: "Metang",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Gravitation",
fr: "Gravitation",
},
effect: {
en: "Each Pokémon in play (both yours and your opponent's) gets -20 HP. No more than 20 HP can be reduced by all Gravitation Poké-Bodies.",
fr: "Retirez 20 PV à chaque Pokémon en jeu (les vôtres et ceux de votre adversaire). Les Poké-Bodies Gravitation ne peuvent pas retirer plus de 20 PV.",
},
},
],
attacks: [
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Geo Impact",
fr: "Géo-impact",
},
effect: {
en: "If you have a Stadium card in play, this attack does 20 damage to each of your opponent's Benched Pokémon that is the same type as the Defending Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Si vous avez une carte Stade en jeu, cette attaque inflige 20 dégâts à chacun des Pokémon de Banc de votre adversaire étant du même type que le Pokémon Défenseur. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "+30"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card