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

84 lines
1.4 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 '../Team Rocket Returns'
const card: Card = {
name: {
en: "Dark Crobat",
},
illustrator: "Kyoko Koizumi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
169,
],
hp: 90,
types: [
"Grass",
"Darkness",
],
evolveFrom: {
en: "Dark Golbat",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Black Beam",
},
effect: {
en: "Once during your turn (before your attack), if Dark Crobat is your Active Pokémon, you may choose 1 of the Defending Pokémon. That Pokémon is now Poisoned. This power can't be used if Dark Crobat is affected by a Special Condition.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Dark Drain",
},
effect: {
en: "Does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Remove from Dark Crobat a number of damage counters equal to the number of your opponent's Pokémon in play.",
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Skill Dive",
},
effect: {
en: "Does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card