mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
77 lines
1.1 KiB
TypeScript
77 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Mysterious Treasures'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Tyranitar",
|
|
},
|
|
illustrator: "Masakazu Fukuda",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
248,
|
|
],
|
|
hp: 140,
|
|
types: [
|
|
"Darkness",
|
|
],
|
|
evolveFrom: {
|
|
en: "Pupitar",
|
|
},
|
|
stage: "Stage2",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Darkness",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Payback",
|
|
},
|
|
effect: {
|
|
en: "If your opponent has only 1 Prize card left, this attack does 40 damage plus 40 more damage and discard the top 3 cards from your opponent's deck.",
|
|
},
|
|
damage: 40,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Fighting",
|
|
"Darkness",
|
|
"Darkness",
|
|
],
|
|
name: {
|
|
en: "Ground Burn",
|
|
},
|
|
effect: {
|
|
en: "Each player discards the top card of his or her deck. This attack does 80 damage plus 20 more damage for each Energy card discarded in this way.",
|
|
},
|
|
damage: 80,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fighting",
|
|
value: "+30"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Psychic",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|