1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

76 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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'
import Set from '../Generations'
const card: Card = {
name: {
en: "Floette",
fr: "Floette",
},
illustrator: "Eske Yoshinob",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
670,
],
hp: 70,
types: [
"Fairy",
],
evolveFrom: {
en: "Flabébé",
fr: "Flabébé",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fairy",
],
name: {
en: "Petal Blizzard",
fr: "Tempête Florale",
},
effect: {
en: "This attack does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
{
cost: [
"Fairy",
"Colorless",
],
name: {
en: "Razor Leaf",
fr: "Tranch'Herbe",
},
damage: 30,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card