mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 21:02:15 +00:00
* 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
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
|