1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon 2fc22cc4a5
Added Best of games (#108)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:59:30 +02:00

41 lines
912 B
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 '../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