1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

72 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Forbidden Light'
const card: Card = {
name: {
en: "Flabébé",
fr: "Flabébé",
es: "Flabébé",
it: "Flabébé",
pt: "Flabébé",
de: "Flabébé"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
669,
],
hp: 40,
types: [
"Fairy",
],
stage: "Basic",
attacks: [
{
cost: [
"Fairy",
],
name: {
en: "Secret Blessings",
fr: "Bénédictions Secrètes",
es: "Bendiciones Secretas",
it: "Preghiera Segreta",
pt: "Bênçãos Secretas",
de: "Geheimer Segen"
},
effect: {
en: "Shuffle 3 in any combination of Pokémon and basic Energy cards from your discard pile into your deck.",
fr: "Choisissez une combinaison de 3 Pokémon et Énergies de base dans votre pile de défausse et mélangez-les avec votre deck.",
es: "Pon, en cualquier combinación, 3 cartas de Pokémon y de Energía Básica de tu pila de descartes en tu baraja y barájalas todas.",
it: "Rimischia tre carte Pokémon e Energia base in qualsiasi combinazione dalla tua pila degli scarti nel tuo mazzo.",
pt: "Embaralhe 3 cartas de Pokémon e de Energia básica da sua pilha de descarte no seu baralho em qualquer combinação.",
de: "Mische eine beliebige Kombination aus 3 Pokémon und Basis-Energiekarten aus deinem Ablagestapel in dein Deck."
},
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card