1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

62 lines
888 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Crobat V",
},
illustrator: "PLANETA Mochizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 180,
types: [
"Darkness",
],
abilities: [
{
type: "Ability",
name: {
en: "Dark Asset",
},
effect: {
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may draw cards until you have 6 cards in your hand. You cant use more than 1 Dark Asset Ability each turn.",
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Venomous Fang",
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 1,
}
export default card