1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 10:29:54 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

102 lines
1.8 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Furret",
fr: "Fouinar",
es: "Furret",
it: "Furret",
pt: "Furret",
de: "Wiesenior"
},
illustrator: "tetsuya koizumi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 110,
types: [
"Colorless",
],
evolveFrom: {
en: "Sentret",
fr: "Fouinette"
},
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Feelin Fine",
fr: "Mode Cool",
es: "Buen Rollito",
it: "Tuttobene",
pt: "Sensação Boa",
de: "Wohl fühlen"
},
effect: {
en: "Draw 3 cards.",
fr: "Piochez 3 cartes.",
es: "Roba 3 cartas.",
it: "Pesca tre carte.",
pt: "Compre 3 cartas.",
de: "Ziehe 3 Karten."
},
},
{
cost: [
"Colorless",
],
name: {
en: "Tail Smash",
fr: "Éclate-Queue",
es: "Coletazo",
it: "Coda Esplosiva",
pt: "Pancada de Cauda",
de: "Schwanzschmetterer"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si cest pile, cette attaque ne fait rien.",
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
pt: "Jogue 1 moeda. Se sair coroa, este ataque não fará nada.",
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
},
damage: 90,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "It makes a nest to suit its long and skinny body. The nest is impossible for other Pokémon to enter."
}
}
export default card