1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

Added Best of games (#108)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-18 11:59:30 +02:00
committed by GitHub
parent bf27f42720
commit 2fc22cc4a5
9 changed files with 348 additions and 0 deletions

View File

@ -0,0 +1,31 @@
import { Card } from '../../../interfaces'
import Set from '../Best of game'
const card: Card = {
set: Set,
name: {
en: "Dark Venusaur"
},
illustrator: "Shin-ichi Yoshida",
rarity: "None",
category: "Pokemon",
stage: "Stage2",
attacks: [{
cost: ["Grass", "Grass", "Grass"],
name: {
en: "Horrid Pollen"
},
damage: 30,
effect: {
en: "Flip 2 coins. If 1 is heads, the Defending Pokémon is now Asleep and Poisoned. If both are heads, the Defending Pokémon is now Confused and Poisoned. If both are tails, the Defending Pokémon is now Paralyzed and Poisoned."
}
}]
}
export default card