1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 09:29:55 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

78 lines
1.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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Butterfree VMAX",
fr: "Papilusion VMAX",
es: "Butterfree VMAX",
it: "Butterfree VMAX",
pt: "Butterfree VMAX",
de: "Smettbo VMAX"
},
illustrator: "aky CG Works",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
hp: 300,
types: [
"Grass",
],
evolveFrom: {
en: "Butterfree V",
fr: "Papilusion-V"
},
attacks: [
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "G-Max Toxbreeze",
fr: "Toxibrise G-Max",
es: "Gigabrisa Tóxica",
it: "Gigabrezza Tossica",
pt: "Brisa Tóxica G-Max",
de: "Giga-Giftbrise"
},
effect: {
en: "Your opponents Active Pokémon is now Confused and Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus et Empoisonné.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido y Envenenado.",
it: "Il Pokémon attivo del tuo avversario viene confuso e avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso e Envenenado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt und vergiftet."
},
damage: 150,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
regulationMark: "D",
retreat: 0,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
stage: "VMAX"
}
export default card