1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +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,41 @@
import { Card } from '../../../interfaces'
import Set from '../Best of game'
const card: Card = {
set: Set,
name: {
en: "Dark Ivysaur"
},
illustrator: "Shin-ichi Yoshida",
rarity: "None",
category: "Pokemon",
stage: "Stage1",
abilities: [{
type: "Poke-BODY",
name: {
en: "Vine Pull"
},
effect: {
en: "Once during your turn when Dark Ivysaur retreats, choose 1 of your opponents Benched Pokémon and switch it with his or her Active Pokémon."
}
}],
attacks: [{
cost: ["Grass", "Grass"],
name: {
en: "Fury Strikes"
},
effect: {
en: "Your opponent puts 3 markers onto his or her Pokémon (divided as he or she chooses). (More than 1 marker can be put on the same Pokémon.) Then, this attack does 10 damage to each Pokémon for each marker on it. Dont apply Weakness and Resistance. Remove the markers at the end of the turn."
}
}]
}
export default card