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

94 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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: "Scizor V",
fr: "Cizayox V",
es: "Scizor V",
it: "Scizor V",
pt: "Scizor V",
de: "Scherox V"
},
illustrator: "Satoshi Shirai",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
hp: 210,
types: [
"Metal",
],
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Hack Off",
fr: "Sectionnement",
es: "Cercenar",
it: "Mozzar Via",
pt: "Picotar",
de: "Abhacken"
},
effect: {
en: "Discard a Pokémon Tool and a Special Energy from your opponents Active Pokémon.",
fr: "Défaussez un Outil Pokémon et une Énergie spéciale du Pokémon Actif de votre adversaire.",
es: "Descarta 1 Herramienta Pokémon y 1 Energía Especial del Pokémon Activo de tu rival.",
it: "Scarta un Oggetto Pokémon e unEnergia speciale dal Pokémon attivo del tuo avversario.",
pt: "Descarte 1 Ferramenta Pokémon e 1 Energia Especial do Pokémon Ativo do seu oponente.",
de: "Lege 1 Pokémon-Ausrüstung und 1 Spezial-Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 30,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Slashing Claw",
fr: "Griffe Taillante",
es: "Garra Cuchillazo",
it: "Artigli Laceranti",
pt: "Garra Cortadora",
de: "Schlitzende Klaue"
},
damage: 140,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card