1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

91 lines
2.1 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",
de: "Dunkles Iksbat"
},
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",
de: "Blach 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.",
de: "Once during your turn (before your attack), if Dark Crobat is your Acive 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",
"Darkness",
],
name: {
en: "Dark Drain",
de: "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.",
de: "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 opponen´s Pokémon in play."
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Skill Dive",
de: "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.)",
de: "Does 30 damage counters 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