1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +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

40 lines
1.3 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Spikemuth",
fr: "Smashings",
es: "Pueblo Crampón",
it: "Spikeville",
pt: "Spikemuth",
de: "Spikeford"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Whenever a players Active Pokémon moves to the Bench during their turn, put 2 damage counters on that Pokémon.",
fr: "Chaque fois que le Pokémon Actif dun joueur se déplace vers le Banc pendant son tour, placez 2 marqueurs de dégâts sur ce Pokémon-là.",
es: "Cada vez que el Pokémon Activo de un jugador se mueva a la Banca durante su turno, pon 2 contadores de daño en ese Pokémon.",
it: "Ogni volta che il Pokémon attivo di un giocatore si sposta in panchina durante il suo turno, metti due segnalini danno su quel Pokémon.",
pt: "Sempre que o Pokémon Ativo de um dos jogadores for movido para o Banco durante o turno dele(a), coloque 2 contadores de dano naquele Pokémon.",
de: "Lege jedes Mal, wenn das Aktive Pokémon eines Spielers während seines Zuges auf die Bank wechselt, 2 Schadensmarken auf jenes Pokémon."
},
trainerType: "Stadium",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card