mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
* fix: Added most of the translations Some translations aren't available or are user made without a card image depicted Signed-off-by: Avior <github@avior.me> * fix: Add sets French translations Signed-off-by: Avior <github@avior.me>
82 lines
1017 B
TypeScript
82 lines
1017 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 1'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Metagross",
|
|
fr: "Metalosse"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
376,
|
|
],
|
|
|
|
hp: 100,
|
|
|
|
types: [
|
|
"Metal",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Metang",
|
|
},
|
|
|
|
stage: "Stage2",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Metal",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Metal Claw",
|
|
fr: "Griffe acier"
|
|
},
|
|
|
|
damage: 30,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Hyper Beam",
|
|
fr: "Ultralaser"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, discard 1 Energy attached to the Defending Pokémon.",
|
|
fr: "Lancez une pièce. Si c'est face, défaussez 1 Énergie attachée au Pokémon Défenseur."
|
|
},
|
|
damage: 50,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Fire"
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Grass",
|
|
value: "-30"
|
|
},
|
|
],
|
|
|
|
retreat: 3
|
|
}
|
|
|
|
export default card
|