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

91 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 Tyranitar",
},
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",
},
effect: {
en: "Does 10 damage plus 10 more damage for each Energy attached to Dark Tyranitar.",
},
damage: 10,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "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.)",
},
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Bite Off",
},
effect: {
en: "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