1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +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

84 lines
2.1 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 '../Rebel Clash'
const card: Card = {
set: Set,
name: {
en: "Galarian Perrserker",
fr: "Berserkatt de Galar",
es: "Perrserker de Galar",
it: "Perrserker di Galar",
pt: "Perrserker de Galar",
de: "Galar-Mauzinger"
},
illustrator: "PLANETA Tsuji",
rarity: "Secret Rare",
category: "Pokemon",
hp: 120,
types: ["Metal"],
evolveFrom: {
en: "Galarian Meowth",
fr: "Miaouss de Galar"
},
abilities: [{
type: "Ability",
name: {
en: "Steely Spirit",
fr: "Boost Acier",
es: "Alma Acerada",
it: "Spiritoferreo",
pt: "Espírito Férreo",
de: "Stählerner Wille"
},
effect: {
en: "Your Metal Pokémons attacks do 20 more damage to your opponents Active Pokémon (before applying Weakness and Resistance).",
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).",
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: {
en: "Metal Claw",
fr: "Griffe Acier",
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",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card