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

76 lines
1.4 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: "Bellossom δ",
fr: "Joliflor δ ESPÈCES DELTA"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
182,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Gloom",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Fellowship",
fr: "Fraternité"
},
effect: {
en: "Bellossom can use the attacks of all Oddish, Gloom, Vileplume, Vileplume ex, or other Bellossom you have in play as its own. (You still need the necessary Energy to use each attack.)",
fr: "Joliflor peut utiliser les attaques de tous les Mystherbes, Ortides, Rafflesias, Rafflesias ex ou autres Joliflors que vous avez en jeu à la place des siennes. (Vous avez toujours besoin de l'Énergie nécessaire pour utiliser chaque attaque.)"
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Aqua Flower",
fr: "Fleur aquatique"
},
effect: {
en: "During your opponent's next turn, Bellossom has no Weakness.",
fr: "Lors du prochain tour de votre adversaire, Joliflor ne possède pas de Faiblesse."
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-30"
},
],
}
export default card