1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon b6fbcc1b77
fix: add EX French translations (#169)
* fix: Add for some sets

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

* Added Sets titles

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

* fix: Finished last EX sets

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

* Change Discord Link text
2021-11-15 16:24:10 +01:00

88 lines
1.8 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 '../Legend Maker'
const card: Card = {
name: {
en: "Victreebel",
fr: "Empiflor"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
71,
],
hp: 100,
types: [
"Grass",
],
evolveFrom: {
en: "Weepinbell",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Nectar Pod",
fr: "Poche de nectar"
},
effect: {
en: "Once during your turn (before your attack), you may switch 1 of your opponent's Benched Stage 2 Evolved Pokémon with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch. This power can't be used if Victreebel is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez échanger 1 des Pokémon Évolués de niveau 2 sur le Banc de votre adversaire avec 1 des Pokémon Défenseurs. Votre adversaire choisit le Pokémon Défenseur à échanger. Ce pouvoir ne peut pas être utilisé si Empiflor est affecté par un État Spécial."
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Sleep Poison",
fr: "Poison dodo"
},
effect: {
en: "The Defending Pokémon is now Asleep and Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Endormi et Empoisonné."
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Sharp Leaf",
fr: "Feuille tranchante"
},
effect: {
en: "Flip a coin. If heads, this attack does 40 damage plus 30 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts plus 30 dégâts supplémentaires."
},
damage: "40+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card