mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
91 lines
1.7 KiB
TypeScript
91 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKpoint'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Furfrou",
|
||
fr: "Couafarel",
|
||
es: "Furfrou",
|
||
it: "Furfrou",
|
||
pt: "Furfrou",
|
||
de: "Coiffwaff"
|
||
},
|
||
illustrator: "Masakazu Fukuda",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
676,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Collect",
|
||
fr: "Collecte",
|
||
es: "Coleccionar",
|
||
it: "Tassa",
|
||
pt: "Coleta",
|
||
de: "Sammeln"
|
||
},
|
||
effect: {
|
||
en: "Draw a card.",
|
||
fr: "Piochez une carte.",
|
||
es: "Roba 1 carta.",
|
||
it: "Pesca una carta.",
|
||
pt: "Compre um card.",
|
||
de: "Ziehe 1 Karte."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Tight Jaw",
|
||
fr: "Mâchoire Serrée",
|
||
es: "Mandíbula Cerrada",
|
||
it: "Strettazanna",
|
||
pt: "Mandíbula Firme",
|
||
de: "Fester Biss"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente será Paralisado.",
|
||
de: "Wirf 1 Münze. Bei „Kopf“ ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|