mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
61
data/Sword & Shield/Darkness Ablaze/182.ts
Normal file
61
data/Sword & Shield/Darkness Ablaze/182.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Darkness Ablaze'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Crobat V",
|
||||
},
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
rarity: "Ultra 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 can’t use more than 1 Dark Asset Ability each turn.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Darkness",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Venomous Fang",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned.",
|
||||
},
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user