1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

39 lines
391 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Neo Destiny'
const card: Card = {
name: {
en: "Shining Tyranitar",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
248,
],
hp: 80,
types: [
"Darkness",
],
stage: "Basic",
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card