1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

96 lines
2.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 '../Evolutions'
const card: Card = {
name: {
en: "Clefairy",
fr: "Mélofée",
es: "Clefairy",
it: "Clefairy",
pt: "Clefairy",
de: "Piepi"
},
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",
es: "Canto",
it: "Canto",
pt: "Canção",
de: "Gesang"
},
effect: {
en: "Flip a coin. If heads, your opponents Active Pokémon is now Asleep.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Endormi.",
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Dormido.",
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene addormentato.",
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Adormecido.",
de: "Wirf 1 Münze. Bei „Kopf“ schläft das Aktive Pokémon deines Gegners jetzt."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Metronome",
fr: "Métronome",
es: "Metrónomo",
it: "Metronomo",
pt: "Metrônomo",
de: "Metronom"
},
effect: {
en: "Choose 1 of your opponents Active Pokémons attacks and use it as this attack.",
fr: "Choisissez lune des attaques du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque.",
es: "Elige 1 de los ataques del Pokémon Activo de tu rival y úsalo para este ataque.",
it: "Scegli uno degli attacchi del Pokémon attivo del tuo avversario e usalo al posto di questo attacco.",
pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente e use-o como este ataque.",
de: "Wähle 1 Angriff des Aktiven Pokémon deines Gegners und verwende ihn als diesen Angriff."
},
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card