mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-16 13:39:54 +00:00
* 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>
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
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 player’s 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 d’un 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
|