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

98 lines
1.6 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 Tyranitar",
de: "Dunkles Despotar"
},
illustrator: "Nakaoka",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
248,
],
hp: 120,
types: [
"Darkness",
],
evolveFrom: {
en: "Dark Pupitar",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Grind",
de: "Grind"
},
effect: {
en: "Does 10 damage plus 10 more damage for each Energy attached to Dark Tyranitar.",
de: "Does 10 damage plus 10 more damage for each Energy attached to Dark Tyranitar."
},
damage: "10+",
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Spinning Tail",
de: "Spinning Tail"
},
effect: {
en: "Does 20 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
de: "Does 20 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
},
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Bite Off",
de: "Bite Off"
},
effect: {
en: "If the Defending Pokémon is Pokémon-ex, this attack does 70 damage plus 50 more damage.",
de: "If the Defending Pokémon is Pokémon-ex, this attack does 70 damage plus 50 more damage."
},
damage: "70+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card