1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon dc52152f23
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 22:20:17 +02:00

63 lines
1.1 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"
},
illustrator: "PLANETA Mochizuki",
rarity: "Rare",
category: "Pokemon",
hp: 320,
types: ["Metal"],
evolveFrom: {
en: "Corviknight V",
fr: "Corvaillus-V"
},
abilities: [{
type: "Ability",
name: {
en: "Lustrous Body",
fr: "Corps Lustré"
},
effect: {
en: "Prevent all effects of your opponents Pokémons Abilities done to this Pokémon.",
fr: "Évitez tous les effets des talents des Pokémon de votre adversaire infligés à ce Pokémon."
}
}],
attacks: [{
name: {
en: "G-Max Hurricane",
fr: "Vent Violent G-Max"
},
effect: {
en: "During your next turn, this Pokémon cant use G-Max Hurricane.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Vent Violent G-Max."
},
damage: 240,
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}]
}
export default card