1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00

76 lines
1.2 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Victreebel",
fr: "Empiflor",
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
71,
],
hp: 140,
types: [
"Grass",
],
evolveFrom: {
en: "Weepinbell",
fr: "Boustiflor",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Reactive Poison",
fr: "Poison Réactif",
},
effect: {
en: "This attack does 60 more damage for each Special Condition affecting your opponent's Active Pokémon.",
fr: "Cette attaque inflige 60 dégâts supplémentaires pour chaque État Spécial affectant le Pokémon Actif de votre adversaire.",
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Gastro Acid",
fr: "Suc Digestif",
},
effect: {
en: "The Defending Pokémon has no Abilities until the end of your next turn.",
fr: "Le Pokémon Défenseur na pas de talent jusquà la fin de votre prochain tour.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card