1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon b6fbcc1b77
fix: add EX French translations (#169)
* fix: Add for some sets

Signed-off-by: Avior <github@avior.me>

* Added Sets titles

Signed-off-by: Avior <github@avior.me>

* fix: Finished last EX sets

Signed-off-by: Avior <github@avior.me>

* Change Discord Link text
2021-11-15 16:24:10 +01:00

77 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Delta Species'
const card: Card = {
name: {
en: "Metagross δ",
fr: "Metalosse δ ESPÈCES DELTA"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
376,
],
hp: 100,
types: [
"Lightning",
"Metal",
],
evolveFrom: {
en: "Metang",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Delta Control",
fr: "Contrôle Delta"
},
effect: {
en: "Once during your turn (before your attack), you may look at the top 4 cards of your deck, choose 1 of them, and put it into your hand. Put the 3 other cards on the bottom of your deck in any order. This power can't be used if Metagross is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez regarder les 4 cartes du dessus de votre deck. Choisissez-en 1 et placez-la dans votre main. Placez les 3 autres cartes au dessous de votre deck dans n'importe quel ordre. Ce pouvoir ne peut pas être utilisé si Metalosse est affecté par un État Spécial."
},
},
],
attacks: [
{
cost: [
"Lightning",
"Metal",
],
name: {
en: "Crush and Burn",
fr: "Écra-brûle"
},
effect: {
en: "You may discard as many Energy cards as you like attached to your Pokémon in play. If you do, this attack does 30 damage plus 20 more damage for each Energy card you discarded.",
fr: "Vous pouvez défausser autant de cartes Énergie attachées aux Pokémon que vous avez en jeu que vous voulez. Cette attaque inflige alors 30 dégâts plus 20 dégâts supplémentaires pour chaque carte Énergie défaussée."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
}
export default card