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

109 lines
1.3 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 '../Unseen Forces'
const card: Card = {
name: {
en: "Tyranitar ex",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
248,
],
hp: 160,
types: [
"Darkness",
],
evolveFrom: {
en: "Pupitar",
},
suffix: "EX",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Shatter",
},
effect: {
en: "Discard any Stadium card in play.",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Derail",
},
effect: {
en: "Discard a Special Energy card, if any, attached to the Defending Pokémon.",
},
damage: 30,
},
{
cost: [
"Fighting",
"Darkness",
"Colorless",
],
name: {
en: "Mix-Up",
},
effect: {
en: "Your opponent discards the top card of his or her deck.",
},
damage: 70,
},
{
cost: [
"Fighting",
"Darkness",
"Darkness",
"Colorless",
],
name: {
en: "Losing Control",
},
effect: {
en: "Discard the top 3 cards of your deck.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card