1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +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

89 lines
2.1 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: "Victreebel",
fr: "Empiflor",
es: "Victreebel",
it: "Victreebel",
pt: "Victreebel",
de: "Sarzenia"
},
illustrator: "Tika Matsuno",
rarity: "Rare",
category: "Pokemon",
hp: 150,
types: ["Grass"],
evolveFrom: {
en: "Weepinbell",
fr: "Boustiflor",
es: "Weepinbell",
it: "Weepinbell",
pt: "Weepinbell",
de: "Ultrigaria"
},
attacks: [{
name: {
en: "Panic Vine",
fr: "Liane en Panique",
es: "Liana del Pánico",
it: "Lianapanico",
pt: "Vinha do Pânico",
de: "Panikranke"
},
effect: {
en: "Your opponent's Active Pokémon is now Confused. During your opponent's next turn, that Pokémon can't retreat.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus. Pendant le prochain tour de votre adversaire, ce Pokémon-là ne peut pas battre en retraite.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido. Durante el próximo turno de tu rival, ese Pokémon no puede retirarse.",
it: "Il Pokémon attivo del tuo avversario viene confuso. Durante il prossimo turno del tuo avversario, quel Pokémon non può ritirarsi.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso. Durante o próximo turno do seu oponente, aquele Pokémon não poderá recuar.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt. Während des nächsten Zuges deines Gegners kann sich jenes Pokémon nicht zurückziehen."
},
damage: 40,
cost: ["Grass"]
}, {
name: {
en: "Solar Beam",
fr: "Lance-Soleil",
es: "Rayo Solar",
it: "Solarraggio",
pt: "Raio Solar",
de: "Solarstrahl"
},
damage: 120,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage2",
description: {
en: "Once ingested into this Pokémon's body, even the hardest object will melt into nothing."
}
}
export default card