1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

88 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Vivillon",
fr: "Prismillon",
es: "Vivillon",
it: "Vivillon",
pt: "Vivillon",
de: "Vivillon"
},
illustrator: "miki kudo",
rarity: "Rare",
category: "Pokemon",
hp: 120,
types: ["Grass"],
evolveFrom: {
en: "Spewpa",
fr: "Pérégrain",
es: "Spewpa",
it: "Spewpa",
pt: "Spewpa",
de: "Puponcho"
},
attacks: [{
name: {
en: "Vital Powder",
fr: "Poudre Vitale",
es: "Polvo Vital",
it: "Pulviscoppio Vitale",
pt: "Pó Vital",
de: "Vitalpuder"
},
effect: {
en: "Heal all damage from 2 of your Benched Pokémon.",
fr: "Soignez tous les dégâts de 2 de vos Pokémon de Banc.",
es: "Cura todos los puntos de daño a 2 de tus Pokémon en Banca.",
it: "Cura due dei tuoi Pokémon in panchina da tutti i danni.",
pt: "Cure todo o dano de 2 dos seus Pokémon no Banco.",
de: "Heile allen Schaden bei 2 Pokémon auf deiner Bank."
},
cost: ["Colorless"]
}, {
name: {
en: "Gust",
fr: "Tornade",
es: "Tornado",
it: "Raffica",
pt: "Lufada de Vento",
de: "Windstoß"
},
damage: 90,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage2",
description: {
en: "The patterns on this Pokémon's wings depend on the climate and topography of its habitat. It scatters colorful scales."
}
}
export default card