1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* 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
2021-10-26 10:40:03 +02:00

102 lines
2.4 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Corviknight VMAX",
fr: "Corvaillus VMAX",
es: "Corviknight VMAX",
it: "Corviknight VMAX",
pt: "Corviknight VMAX",
de: "Krarmor VMAX"
},
rarity: "Secret Rare",
category: "Pokemon",
hp: 320,
types: ["Metal"],
abilities: [{
type: "Ability",
name: {
en: "Lustrous Body",
fr: "Corps Lustré",
es: "Cuerpo Lustroso",
it: "Splendicorpo",
pt: "Corpo Lustroso",
de: "Glänzender Körper"
},
effect: {
en: "Prevent all effects of your opponent's Pokémon's Abilities done to this Pokémon.",
fr: "Évitez tous les effets des talents des Pokémon de votre adversaire infligés à ce Pokémon.",
es: "Evita todos los efectos de las habilidades de los Pokémon de tu rival infligidos a este Pokémon.",
it: "Previeni tutti gli effetti delle abilità dei Pokémon del tuo avversario inflitti a questo Pokémon.",
pt: "Previna todos os efeitos das Habilidades dos Pokémon do seu oponente causados a este Pokémon.",
de: "Verhindere alle Effekte von Fähigkeiten der Pokémon deines Gegners, die diesem Pokémon zugefügt werden."
}
}],
attacks: [{
name: {
en: "G-Max Hurricane",
fr: "Vent Violent G-Max",
es: "Gigavendaval",
it: "Gigatifone",
pt: "Furacão G-Max",
de: "Giga-Orkan"
},
damage: 240,
effect: {
en: "During your next turn, this Pokémon can't use G-Max Hurricane.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Vent Violent G-Max.",
es: "Durante tu próximo turno, este Pokémon no puede usar Gigavendaval.",
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Gigatifone.",
pt: "Durante o seu próximo turno, este Pokémon não poderá usar Furacão G-Max.",
de: "Während deines nächsten Zuges kann dieses Pokémon Giga-Orkan nicht einsetzen."
},
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 0,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
stage: "VMAX",
illustrator: "PLANETA Mochizuki",
evolveFrom: {
en: "Corviknight V",
fr: "Corvaillus-V",
es: "Corviknight V",
it: "Corviknight-V",
pt: "Corviknight V",
de: "Krarmor-V"
},
regulationMark: "E"
}
export default card