1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +00:00
Florian Bouillon ec1b6a06b0
Add regulation mark (#17)
* Added to interface

* Added Regulation mark to all current cards

* Ready for merge
2021-05-28 11:21:10 +02:00

70 lines
1.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 '../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,
regulationMark: "D"
}
export default card