1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-18 23:49:49 +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

79
data/XY/Promos/XY34.ts Normal file
View File

@ -0,0 +1,79 @@
import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Metagross-EX",
fr: "Métalosse-EEX",
},
illustrator: "PLANETA",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
376,
],
hp: 180,
types: [
"Metal",
],
suffix: "EX",
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Magnetic Laser",
fr: "Laser Magnétique",
},
effect: {
en: "You may move a Metal Energy from 1 of your Benched Pokémon to this Pokémon.",
fr: "Vous pouvez déplacer une Énergie Metal de l'un de vos Pokémon de Banc vers ce Pokémon.",
},
damage: 20,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Squared Attack",
fr: "Attaque Carrée",
},
effect: {
en: "Flip 4 coins. This attack does 50 damage times the number of heads.",
fr: "Lancez 4 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card