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

77 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Berserkatt de Galar",
en: "Galarian Perrserker",
es: "Perrserker de Galar",
it: "Perrserker di Galar",
pt: "Perrserker de Galar",
de: "Galar-Mauzinger"
},
illustrator: "Ryuta Fuse",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 120,
types: ["Metal"],
evolveFrom: {
fr: "Miaouss de Galar",
en: "Galarian Meowth"
},
abilities: [{
type: "Ability",
name: {
fr: "Boost Acier",
en: "Steely Spirit",
es: "Alma Acerada",
it: "Spiritoferreo",
pt: "Espírito Férreo",
de: "Stählerner Wille"
},
effect: {
fr: "Les attaques de vos Pokémon Metal infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
en: "Your Metal Pokémons attacks do 20 more damage to your opponents Active Pokémon (before applying Weakness and Resistance).",
es: "Los ataques de tus Pokémon Metal hacen 20 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).",
it: "Gli attacchi dei tuoi Pokémon Metal infliggono 20 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.",
pt: "Os ataques dos seus Pokémon Metal causam 20 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).",
de: "Die Attacken deiner Metal-Pokémon fügen dem Aktiven Pokémon deines Gegners 20 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
}
}],
attacks: [{
name: {
fr: "Griffe Acier",
en: "Metal Claw",
es: "Garra Metal",
it: "Ferrartigli",
pt: "Garra de Metal",
de: "Metallklaue"
},
damage: 70,
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card