1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

83 lines
1.6 KiB
TypeScript
Raw Permalink 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 '../Neo Genesis'
const card: Card = {
name: {
en: "Bellossom",
fr: "Joliflor",
de: "Blubella"
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
182,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Gloom",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Sweet Nectar",
fr: "Doux nectar",
de: "Süßer Nektar"
},
effect: {
en: "Flip a coin. If heads, remove all damage counters from 1 of your Pokémon.",
fr: "Lancez une pièce. Si c'est face, retirez tous les marqueurs de dégâts d'un de vos Pokémon.",
de: "Wirf eine Münze. Entferne bei 'Kopf' alle Schadensmarken von einem deiner Pokémon."
},
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Flower Dance",
fr: "Valse des fleurs",
de: "Blumentanz"
},
effect: {
en: "Does 30 damage times the number of cards with Bellossom in their names that you have in play (including this one).",
fr: "Inflige 30 dégâts multipliés par le nombre de cartes que vous avez en jeu et dont le nom contient Joliflor (y compris celle-ci).",
de: "Fügt 30 Schadenspunkte mal der Anzahl an Karten mit Blubella im Titel, die du im Spiel hast (einschließlich dieser), zu."
},
damage: "30x",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
description: {
fr: "Il pullule sous les tropiques. Lorsqu'il danse, ses pétales se frottent en faisant un agréable son de cloches."
}
}
export default card