1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

81 lines
904 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 1'
const card: Card = {
name: {
en: "Tyranitar ex",
},
illustrator: "Hisao Nakamura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
248,
],
hp: 150,
types: [
"Darkness",
],
evolveFrom: {
en: "Pupitar",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scratch",
},
damage: 20,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Critical Crush",
},
effect: {
en: "Discard 2 basic Energy cards attached to Tyranitar ex or this attack does nothing.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass"
},
{
type: "Fighting"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
suffix: "EX",
retreat: 4
}
export default card