1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42: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

94 lines
1.8 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 '../Unified Minds'
const card: Card = {
name: {
en: "Unfezant",
fr: "Déflaisan",
es: "Unfezant",
it: "Unfezant",
pt: "Unfezant",
de: "Fasasnob"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
521,
],
hp: 140,
types: [
"Colorless",
],
evolveFrom: {
en: "Tranquill",
fr: "Colombeau",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Gust",
fr: "Tornade",
es: "Tornado",
it: "Raffica",
pt: "Lufada de Vento",
de: "Windstoß"
},
damage: 40,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Downburst",
fr: "Rafale Descendante",
es: "Chaparrón",
it: "Raffica Discendente",
pt: "Vendaval de Cima",
de: "Fallböe"
},
effect: {
en: "You may have each player shuffle all cards attached to their Active Pokémon into their deck.",
fr: "Vous pouvez demander à chaque joueur de mélanger toutes les cartes attachées à son Pokémon Actif avec son deck.",
es: "Puedes hacer que cada jugador ponga todas las cartas unidas a su Pokémon Activo en su baraja y baraje todas las cartas.",
it: "Puoi far rimischiare a ciascun giocatore tutte le carte assegnate al suo Pokémon attivo nel suo mazzo.",
pt: "Você pode fazer com que cada jogador embaralhe todas as cartas ligadas ao próprio Pokémon Ativo no próprio baralho.",
de: "Du kannst beide Spieler veranlassen, alle an ihr Aktives Pokémon angelegten Karten in ihr Deck zu mischen."
},
damage: 90,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card