1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-15 21:19:55 +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

76 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: "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
}
}
export default card