1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

100 lines
1.4 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 '../Undaunted'
const card: Card = {
name: {
en: "Metagross",
fr: "Metalosse",
de: "Metagross"
},
illustrator: "TOKIYA",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
376,
],
hp: 130,
types: [
"Metal",
],
evolveFrom: {
en: "Metang",
fr: "Metang",
},
stage: "Stage2",
attacks: [
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Strength",
fr: "Force",
de: "Stärke"
},
damage: 70,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Quad Smash",
fr: "Quadruple destruction",
de: "Vierfacher Schlag"
},
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.",
de: "Wirf 4 Münzen. Dieser Angriff fügt 50 Schadenspunkte mal der Anzahl \"Kopf\" zu."
},
damage: "50x",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
description: {
en: "It folds its four legs when flying. Its four brains are said to be superior to a supercomputer."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card