1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +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

75
data/XY/Evolutions/63.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Clefairy",
fr: "Mélofée",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
35,
],
hp: 40,
types: [
"Fairy",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Sing",
fr: "Berceuse",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Asleep.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Endormi.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Metronome",
fr: "Métronome",
},
effect: {
en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack.",
fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque.",
},
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card