1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

89 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 '../Team Rocket Returns'
const card: Card = {
name: {
en: "Dark Dragonair",
de: "Dunkles Dragonir"
},
illustrator: "Tomoaki Imakuni",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
148,
],
hp: 80,
types: [
"Darkness",
"Darkness",
],
evolveFrom: {
en: "Dratini",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Double Tackle",
de: "Double Tackle"
},
effect: {
en: "Does 20 damage to each Defending Pokémon.",
de: "Does 20 damage to each Defending Pokémon."
},
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Crushing Blow",
de: "Crushing Blow"
},
effect: {
en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.",
de: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon."
},
damage: 40,
},
],
weaknesses: [
{
type: "Colorless",
value: "×2"
},
{
type: "Colorless",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
{
type: "Fighting",
value: "-30"
},
],
}
export default card