1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 05:29: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

86 lines
1.6 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 V",
fr: "Papilusion V",
es: "Butterfree V",
it: "Butterfree V",
pt: "Butterfree V",
de: "Smettbo V"
},
illustrator: "Saki Hayashiro",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
hp: 190,
types: [
"Grass",
],
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Dizzying Poison",
fr: "Poison Étourdissant",
es: "Veneno Mareante",
it: "Stordiveleno",
pt: "Veneno Vertiginoso",
de: "Schwindelerregendes Gift"
},
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."
},
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Blasting Wind",
fr: "Vent Impitoyable",
es: "Vientos Explosivos",
it: "Vento Distruttivo",
pt: "Vendaval Avassalador",
de: "Peitschender Wind"
},
damage: 130,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card