1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

61 lines
1.2 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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Galarian Farfetchd",
fr: "Canarticho de Galar",
es: "Farfetchd de Galar",
it: "Farfetchd di Galar",
pt: "Farfetchd de Galar",
de: "Galar-Porenta"
},
illustrator: "HYOGONOSUKE",
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
attacks: [{
name: {
en: "Puncture",
fr: "Perforation",
es: "Pinchazo",
it: "Perforazione",
pt: "Perfuração",
de: "Durchdringen"
},
effect: {
en: "This attacks damage isnt affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
es: "El daño de este ataque no se ve afectado por Resistencia.",
it: "I danni di questo attacco non sono influenzati dalla resistenza.",
pt: "O dano deste ataque não é afetado por Resistência.",
de: "Der Schaden dieser Attacke wird durch Resistenz nicht verändert."
},
damage: 20,
cost: ["Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card