1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

107 lines
2.3 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 '../SWSH Black Star Promos'
const card: Card = {
name: {
fr: "Berserkatt de Galar",
en: "Galarian Perrserker",
es: "Perrserker de Galar",
it: "Perrserker di Galar",
pt: "Galarian Perrserker",
de: "Galar-Mauzinger"
},
illustrator: "Akira Komayama",
rarity: "None",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Metal",
],
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
fr: "Boost Acier",
en: "Steely Spirit",
es: "Alma Acerada",
it: "Spiritoferreo",
pt: "Steely Spirit",
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émon's attacks do 20 more damage to your opponent's 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: "Your Metal Pokémon's attacks do 20 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).",
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: [
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
fr: "Griffe Acier",
en: "Metal Claw",
es: "Garra Metal",
it: "Ferrartigli",
pt: "Metal Claw",
de: "Metallklaue"
},
damage: 70,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 2,
evolveFrom: {
en: "Galarian Meowth",
fr: "Miaouss de Galar"
},
description: {
en: "What appears to be an iron helmet is actually hardened hair. This Pokémon lives for the thrill of battle."
},
dexId: [863],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "D"
}
export default card