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

88 lines
2.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 '../Rebel Clash'
const card: Card = {
name: {
en: "Toxtricity",
fr: "Salarsen",
es: "Toxtricity",
it: "Toxtricity",
pt: "Toxtricity",
de: "Riffex"
},
illustrator: "TOKIYA",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Toxel",
fr: "Toxizap"
},
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Poison Shout",
fr: "Cri Toxique",
es: "Grito Venenoso",
it: "Urlo Velenoso",
pt: "Grito Venenoso",
de: "Giftschrei"
},
effect: {
en: "This attack does 20 damage to each of your opponents Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.) Your opponents Active Pokémon is now Poisoned.",
fr: "Cette attaque inflige 20 dégâts à chacun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.) Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
es: "Este ataque hace 20 puntos de daño a cada uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca). El Pokémon Activo de tu rival pasa a estar Envenenado.",
it: "Questo attacco infligge 20 danni a ciascuno dei Pokémon del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina. Il Pokémon attivo del tuo avversario viene avvelenato.",
pt: "Este ataque causa 20 pontos de dano a cada um dos Pokémon do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco). O Pokémon Ativo do seu oponente agora está Envenenado.",
de: "Diese Attacke fügt jedem Pokémon deines Gegners 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.) Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
},
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Hammer In",
fr: "Enfoncement",
es: "Martillear",
it: "Martello",
pt: "Martelada",
de: "Einhämmern"
},
damage: 90,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
hp: 130,
types: ["Lightning"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card