1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Added informations (#25)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 22:20:17 +02:00
committed by GitHub
parent 5dab7afa10
commit dc52152f23
166 changed files with 7775 additions and 0 deletions

View File

@ -0,0 +1,63 @@
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