1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

89 lines
1.7 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
}
}
export default card