mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more fixes Signed-off-by: Avior <florian.bouillon@delta-wings.net> * More updated :D Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Finished update in English Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated XY datas Signed-off-by: Avior <florian.bouillon@delta-wings.net>
61 lines
923 B
TypeScript
61 lines
923 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../BREAKthrough'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Florges BREAK",
|
|
fr: "Florges TURBO",
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Ultra Rare",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
671,
|
|
],
|
|
|
|
hp: 140,
|
|
|
|
types: [
|
|
"Fairy",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Florges",
|
|
fr: "Florges",
|
|
},
|
|
|
|
stage: "BREAK",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Ability",
|
|
name: {
|
|
en: "Floral Breeze",
|
|
fr: "Brise Florale",
|
|
},
|
|
effect: {
|
|
en: "Once during your turn (before your attack), you may heal 30 damage and remove a Special Condition from your Active Pokémon.",
|
|
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez soigner 30 dégâts et retirer un État Spécial de votre Pokémon Actif.",
|
|
},
|
|
},
|
|
],
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
fr: "Règle des Évolutions TURBO",
|
|
},
|
|
|
|
|
|
},
|
|
],
|
|
|
|
retreat: 0
|
|
}
|
|
|
|
export default card
|