1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Floette",
fr: "Floette",
},
illustrator: "miki kudo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
670,
],
hp: 70,
types: [
"Fairy",
],
evolveFrom: {
en: "Flabébé",
fr: "Flabébé",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Flower Picking",
fr: "Cueillette de Fleurs",
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may choose a random card from your opponent's hand. Your opponent reveals that card and shuffles it into their deck.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer lun de vos Pokémon pendant votre tour, vous pouvez choisir une carte au hasard dans la main de votre adversaire. Votre adversaire montre cette carte et la mélange avec son deck.",
},
},
],
attacks: [
{
cost: [
"Fairy",
"Colorless",
],
name: {
en: "Magical Shot",
fr: "Coup Magique",
},
damage: 30,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card