1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

70 lines
1.2 KiB
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 '../Neo Destiny'
const card: Card = {
name: {
en: "Dark Crobat",
},
illustrator: undefined,
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
169,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Zubat",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Surprise Bite",
},
effect: {
en: "When you play Dark Crobat from your hand, you may choose 1 of your opponent's Pokémon. This power does 20 damage do that Pokémon. (Don't apply Weakness and Resistance.)",
},
},
],
attacks: [
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Dark Drain",
},
effect: {
en: "Flip a coin for each of your opponent's Pokémon. For each heads, this attack does 10 damage to that Pokémon. Don't apply Weakness and Resistance. Remove a number of damage counters from Dark Crobat equal to the damage dealt. If Dark Crobat has fewer damage counters than that, remove all of them.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card