1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,74 @@
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