1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

90 lines
1.9 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 '../Dragon Frontiers'
const card: Card = {
name: {
en: "Meganium δ",
fr: "Meganium δ ESPÈCES DELTA"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
154,
],
hp: 110,
types: [
"Fighting",
],
evolveFrom: {
en: "Bayleef",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Evolutionary Call",
fr: "Appel à l'évolution"
},
effect: {
en: "Once during your turn, when you play Meganium from your hand to evolve 1 of your Pokémon, you may search your deck for up to 3 in any combination of Basic Pokémon or Evolution cards. Show them to your opponent and put them into your hand. Shuffle your deck afterward.",
fr: "Une seule fois lors de votre tour, lorsque vous jouez Meganium de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez choisir dans votre deck une combinaison de jusqu'à 3 Pokémon de base et cartes Évolution. Montrez-les à votre adversaire et placez-les dans votre main. Ensuite, mélangez votre deck."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Delta Reduction",
fr: "Réduction Delta"
},
effect: {
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 30 (before applying Weakness and Resistance).",
fr: "Lors du prochain tour de votre adversaire, les dégâts infligés par des attaques du Pokémon Défenseur sont réduits de 30 (avant application de la Faiblesse et de la Résistance)."
},
damage: 40,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Mega Impact",
fr: "Méga impact"
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-30"
},
],
}
export default card