1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

71 lines
1.6 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Palarticho de Galar",
en: "Galarian Sirfetchd",
es: "Sirfetchd de Galar",
it: "Sirfetchd di Galar",
pt: "Sirfetchd de Galar",
de: "Galar-Lauchzelot"
},
illustrator: "Kouki Saitou",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
evolveFrom: {
fr: "Canarticho de Galar",
en: "Galarian Farfetchd"
},
attacks: [{
name: {
fr: "Transpercement",
en: "Pierce",
es: "Perforar",
it: "Perforare",
pt: "Perfurar",
de: "Durchbohren"
},
damage: 40,
cost: ["Fighting"]
}, {
name: {
fr: "Joute Astrale",
en: "Meteor Assault",
es: "Asalto Estelar",
it: "Sfolgorassalto",
pt: "Ofensiva Meteórica",
de: "Sternensturm"
},
effect: {
fr: "Ce Pokémon ne peut pas réutiliser Joute Astrale tant quil ne quitte pas le Poste Actif.",
en: "This Pokémon cant use Meteor Assault again until it leaves the Active Spot.",
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,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card