1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

74 lines
1.0 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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Venusaur V",
fr: "Florizarre V"
},
illustrator: "PLANETA Mochizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 220,
types: [
"Grass",
],
attacks: [
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Pollen Bomb",
fr: "Bombe Pollen"
},
effect: {
en: "Your opponents Active Pokémon is now Asleep and Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi et Empoisonné."
},
damage: 80,
},
{
cost: [
"Grass",
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Solar Typhoon",
fr: "Typhon Solaire"
},
effect: {
en: "During your next turn, this Pokémon cant use Solar Typhoon.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Typhon Solaire."
},
damage: 220,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 3,
}
export default card