1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

106
cards/sm/sm6/86.ts Normal file
View File

@ -0,0 +1,106 @@
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.png",
fr: "https://assets.tcgdex.net/fr/sm/sm6/86/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm6/86/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm6/86/high.png",
},
},
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