1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

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

* Update datas

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

* Finished fix

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

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

87 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Triumphant'
const card: Card = {
name: {
en: "Victreebel",
fr: "Empiflor",
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
71,
],
hp: 110,
types: [
"Grass",
],
evolveFrom: {
en: "Weepinbell",
fr: "Boustiflor",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Tangling Tendrils",
fr: "Enchevêtrement végétal",
},
effect: {
en: "As long as Victreebel is your Active Pokémon, your opponents Active Pokémons Retreat Cost is ColorlessColorless more.",
fr: "Tant quEmpiflor est votre Pokémon Actif, le Coût de retraite du Pokémon Actif de votre adversaire est augmenté de ColorlessColorless.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Acidic Drain",
fr: "Ponction acide",
},
effect: {
en: "The Defending Pokémon is now Burned and Poisoned. Remove 3 damage counters from Victreebel.",
fr: "Le Pokémon Défenseur est maintenant Brûlé et Empoisonné. Retirez 3 marqueurs de dégât à Empiflor.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
description: {
en: "Acid that has dissolved many prey becomes sweeter, making it even more effective at attracting prey."
},
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card