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

88 lines
1.6 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 '../Holon Phantoms'
const card: Card = {
name: {
en: "Gyarados δ",
fr: "Leviator δ ESPÈCES DELTA"
},
illustrator: "Hajime Kusajima",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
130,
],
hp: 90,
types: [
"Lightning",
"Metal",
],
evolveFrom: {
en: "Magikarp",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Delta Reactor",
fr: "Réacteur Delta"
},
effect: {
en: "As long as any Stadium card with Holon in its name is in play, each of your Pokémon that has δ on its card does 10 more damage to the Defending Pokémon (before applying Weakness and Resistance).",
fr: "Tant que des cartes Stade dont le nom comporte Holon sont en jeu, chacun de vos Pokémon possédant le symbole δ inflige au Pokémon Défenseur 10 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance)."
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Hyper Beam",
fr: "Ultralaser"
},
effect: {
en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est face, défaussez une carte Énergie attachée au Pokémon Défenseur."
},
damage: 20,
},
{
cost: [
"Lightning",
"Metal",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Heavy Impact",
fr: "Gros impact"
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card