1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +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

87 lines
2.8 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Smogogo de Galar",
en: "Galarian Weezing",
es: "Weezing de Galar",
it: "Weezing di Galar",
pt: "Weezing de Galar",
de: "Galar-Smogmog"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
evolveFrom: {
fr: "Smogo",
en: "Koffing"
},
abilities: [{
type: "Ability",
name: {
fr: "Gaz Inhibiteur",
en: "Neutralizing Gas",
es: "Gas Reactivo",
it: "Gas Reagente",
pt: "Gás Neutralizador",
de: "Reaktionsgas"
},
effect: {
fr: "Tant que ce Pokémon est sur le Poste Actif, les Pokémon en jeu de votre adversaire nont pas de talent, à lexception de Gaz Inhibiteur.",
en: "As long as this Pokémon is in the Active Spot, your opponents Pokémon in play have no Abilities, except for Neutralizing Gas.",
es: "Mientras este Pokémon esté en el Puesto Activo, los Pokémon en juego de tu rival no tienen ninguna habilidad, excepto Gas Reactivo.",
it: "Fintanto che questo Pokémon è in posizione attiva, i Pokémon in gioco del tuo avversario non hanno abilità, a eccezione di Gas Reagente.",
pt: "Enquanto este Pokémon estiver no Campo Ativo, os Pokémon em jogo do seu oponente não têm Habilidades, exceto por Gás Neutralizador.",
de: "Solange dieses Pokémon in der Aktiven Position ist, haben die Pokémon deines Gegners im Spiel keine Fähigkeiten, außer Reaktionsgas."
}
}],
attacks: [{
name: {
fr: "Poison Violent",
en: "Severe Poison",
es: "Veneno Grave",
it: "Maloveleno",
pt: "Veneno Forte",
de: "Pures Gift"
},
effect: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Placez 4 marqueurs de dégâts au lieu dun sur ce Pokémon-là pendant le Contrôle Pokémon.",
en: "Your opponents Active Pokémon is now Poisoned. Put 4 damage counters instead of 1 on that Pokémon during Pokémon Checkup.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Pon 4 contadores de daño en vez de 1 en ese Pokémon durante el Chequeo Pokémon.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato. Metti quattro segnalini danno invece di uno su quel Pokémon durante il controllo Pokémon.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Coloque 4 contadores de dano ao invés de 1 naquele Pokémon durante o Checape Pokémon.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Lege beim Pokémon-Check 4 Schadensmarken anstelle von 1 Schadensmarke auf jenes Pokémon."
},
cost: ["Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card