1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon df23371cb4
fix: Add most POP series French translations (#170)
* 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>
2021-11-16 10:08:20 +01:00

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