1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +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

96 lines
2.4 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 = {
name: {
en: "Galarian Runerigus",
fr: "Tutétékri de Galar",
es: "Runerigus de Galar",
it: "Runerigus di Galar",
pt: "Runerigus de Galar",
de: "Galar-Oghnatoll"
},
illustrator: "TOKIYA",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Galarian Yamask",
fr: "Tutafeh de Galar"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Spreading Spite",
fr: "Mépris Réparti",
es: "Esparcir Rencor",
it: "Spargidispetti",
pt: "Disseminar Rancor",
de: "Boshafte Ausbreitung"
},
effect: {
en: "For each damage counter on this Galarian Runerigus, put 2 damage counters on your opponents Pokémon in any way you like.",
fr: "Pour chaque marqueur de dégâts sur ce Tutétékri de Galar, placez 2 marqueurs de dégâts sur les Pokémon de votre adversaire comme il vous plaît.",
es: "Por cada contador de daño en este Runerigus de Galar, pon 2 contadores de daño en los Pokémon de tu rival de la manera que desees.",
it: "Per ogni segnalino danno presente su questo Runerigus di Galar, metti due segnalini danno sui Pokémon del tuo avversario nel modo che preferisci.",
pt: "Para cada contador de dano neste Runerigus de Galar, coloque 2 contadores de dano nos Pokémon do seu oponente como desejar.",
de: "Lege für jede Schadensmarke auf diesem Galar-Oghnatoll 2 Schadensmarken beliebig auf die Pokémon deines Gegners."
},
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Mad Hammer",
fr: "Marteau en Folie",
es: "Martillo Enloquecido",
it: "Martello Pazzo",
pt: "Martelo Insano",
de: "Verrückter Hammer"
},
effect: {
en: "This Pokémon also does 30 damage to itself.",
fr: "Ce Pokémon sinflige aussi 30 dégâts.",
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
},
damage: 120,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
hp: 100,
types: ["Fighting"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card