mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
86 lines
1.5 KiB
TypeScript
86 lines
1.5 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
|
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
|
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
|
import Category from '@tcgdex/sdk/interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "xy8-104",
|
|
localId: 104,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Florges BREAK",
|
|
fr: "Florges TURBO",
|
|
},
|
|
|
|
hp: 140,
|
|
|
|
type: [
|
|
Type.FAIRY,
|
|
],
|
|
|
|
dexId: 671,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/xy/xy8/104/low",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xy8/104/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/xy/xy8/104/high",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xy8/104/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Florges",
|
|
fr: "Florges",
|
|
},
|
|
|
|
tags: [
|
|
Tag.BREAK,
|
|
],
|
|
|
|
illustrator: "5ban Graphics",
|
|
|
|
abilities: [{
|
|
id: 627,
|
|
type: AbilityType.TALENT,
|
|
name: {
|
|
en: "Floral Breeze",
|
|
fr: "Brise Florale",
|
|
},
|
|
text: {
|
|
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",
|
|
},
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.RARE,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "BREAKthrough",
|
|
code: "xy8"
|
|
}
|
|
}
|
|
|
|
export default card
|