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

78 lines
1.8 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Nostenfer VMAX",
en: "Crobat VMAX",
es: "Crobat VMAX",
it: "Crobat VMAX",
pt: "Crobat VMAX",
de: "Iksbat VMAX"
},
illustrator: "PLANETA Tsuji",
rarity: "Rare",
category: "Pokemon",
hp: 300,
types: ["Darkness"],
evolveFrom: {
fr: "Nostenfer-V",
en: "Crobat V"
},
attacks: [{
name: {
fr: "Poison Évasif",
en: "Stealth Poison",
es: "Veneno Sigiloso",
it: "Veleno Subdolo",
pt: "Veneno Furtivo",
de: "Tarngift"
},
effect: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Échangez ce Pokémon contre lun de vos Pokémon de Banc.",
en: "Your opponents Active Pokémon is now Poisoned. Switch this Pokémon with 1 of your Benched Pokémon.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Cambia este Pokémon por 1 de tus Pokémon en Banca.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato. Scambia questo Pokémon con uno della tua panchina.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Troque este Pokémon por 1 dos seus Pokémon no Banco.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus."
},
damage: 70,
cost: ["Darkness", "Colorless"]
}, {
name: {
fr: "Tranchomax",
en: "Max Cutter",
es: "Maxicorte",
it: "Dynalama",
pt: "Cortador Max",
de: "Dyna-Schnitt"
},
damage: 180,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card