1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 02:07:50 +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

95 lines
1.9 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Galarian Sirfetchd",
fr: "Palarticho de Galar",
es: "Sirfetchd de Galar",
it: "Sirfetchd di Galar",
pt: "Sirfetchd de Galar",
de: "Galar-Lauchzelot"
},
illustrator: "You Iribi",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Galarian Farfetch'd",
fr: "Canarticho de Galar"
},
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Pierce",
fr: "Transpercement",
es: "Perforar",
it: "Perforare",
pt: "Perfurar",
de: "Durchbohren"
},
damage: 40,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Meteor Assault",
fr: "Joute Astrale",
es: "Asalto Estelar",
it: "Sfolgorassalto",
pt: "Ofensiva Meteórica",
de: "Sternensturm"
},
effect: {
en: "This Pokémon cant use Meteor Assault again until it leaves the Active Spot.",
fr: "Ce Pokémon ne peut pas réutiliser Joute Astrale tant quil ne quitte pas le Poste Actif.",
es: "Este Pokémon no puede usar Asalto Estelar de nuevo hasta que deje el Puesto Activo.",
it: "Questo Pokémon non può più usare Sfolgorassalto finché non lascia la posizione attiva.",
pt: "Este Pokémon não poderá usar Ofensiva Meteórica novamente até sair do Campo Ativo.",
de: "Dieses Pokémon kann Sternensturm erst wieder einsetzen, wenn es die Aktive Position verlässt."
},
damage: 180,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
hp: 130,
types: ["Fighting"],
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
stage: "Stage1",
description: {
en: "Only Farfetchd that have survived many battles can attain this evolution. When this Pokémons leek withers, it will retire from combat."
}
}
export default card