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

75 lines
1.1 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 '../Ancient Origins'
const card: Card = {
name: {
en: "Bellossom",
fr: "Joliflor",
},
illustrator: "Mizue",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
182,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Gloom",
fr: "Ortide",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Windmill",
fr: "Moulin à Vent",
},
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Échangez ce Pokémon avec l'un de vos Pokémon de Banc.",
},
damage: 20,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Flower Tornado",
fr: "Floramixeur",
},
effect: {
en: "Move as many Grass Energy attached to your Pokémon to your other Pokémon in any way you like.",
fr: "Déplacez autant dÉnergies Grass attachées à vos Pokémon que vous voulez vers vos autres Pokémon, de la manière que vous voulez.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card