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

72 lines
1.3 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: "Ampharos δ",
fr: "Pharamp δ ESPÈCES DELTA"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
181,
],
hp: 120,
types: [
"Colorless",
],
evolveFrom: {
en: "Flaaffy",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Holon Veil",
fr: "Voile Holon"
},
effect: {
en: "Treat each Basic Pokémon and Evolution card in your deck, in your discard pile, in your hand, and in play as a Pokémon that has δ on its card.",
fr: "Traitez chaque Pokémon de base et chaque carte Évolution dans votre deck, votre pile de défausse, votre main ou en jeu comme un Pokémon possédant le symbole δ."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Delta Circle",
fr: "Cercle Delta"
},
effect: {
en: "Does 20 damage plus 10 more damage for each Pokémon you have in play that has δ on its card.",
fr: "Inflige 20 dégâts plus 10 dégâts supplémentaires pour chaque Pokémon que vous avez en jeu possédant le symbole δ."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card