1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

106 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "sm6-86",
localId: 86,
// Card informations
name: {
en: "Florges",
fr: "Florges",
},
hp: 120,
type: [
Type.FAIRY,
],
dexId: 671,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm6/86/low",
fr: "https://assets.tcgdex.net/fr/sm/sm6/86/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm6/86/high",
fr: "https://assets.tcgdex.net/fr/sm/sm6/86/high",
},
},
evolveFrom: {
en: "Floette",
fr: "Floette",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 77,
name: "Satoshi Shirai"
},
abilities: [{
id: 1146,
type: AbilityType.TALENT,
name: {
en: "Wondrous Gift",
fr: "Cadeau Merveilleux",
},
text: {
en: "Once during your turn (before your attack), you may flip a coin. If heads, put an Item card from your discard pile on top of your deck.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si cest face, placez une carte Objet de votre pile de défausse sur le dessus de votre deck.",
}
}],
attacks: [{
cost: [
Type.FAIRY,
Type.FAIRY,
Type.COLORLESS
],
name: {
en: "Mist Guard",
fr: "Bruine Gardienne",
},
text: {
en: "Prevent all damage done to this Pokémon by attacks from Dragon Pokémon during your opponent's next turn.",
fr: "Évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon Dragon pendant le prochain tour de votre adversaire.",
},
damage: 70
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
resistances: [{
type: Type.DARKNESS,
value: "-20"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Forbidden Light",
code: "sm6"
}
}
export default card