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

68 lines
1.1 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: "Furfrou",
fr: "Couafarel",
es: "Furfrou",
it: "Furfrou",
pt: "Furfrou",
de: "Coiffwaff"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
676,
],
hp: 90,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Return",
fr: "Retour",
es: "Retribución",
it: "Ritorno",
pt: "Retorno",
de: "Rückkehr"
},
effect: {
en: "You may draw cards until you have 5 cards in your hand.",
fr: "Vous pouvez piocher des cartes jusquà ce que vous ayez 5 cartes en main.",
es: "Puedes robar cartas hasta que tengas 5 cartas en tu mano.",
it: "Puoi pescare fino ad avere cinque carte in mano.",
pt: "Você pode comprar cartas até ter 5 cartas na sua mão.",
de: "Du kannst so lang Karten ziehen, bis du 5 Karten auf deiner Hand hast."
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card