import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Tyranitar", }, illustrator: "Naoyo Kimura", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 248, ], hp: 120, types: [ "Darkness", ], evolveFrom: { en: "Pupitar", }, stage: "Stage2", attacks: [ { cost: [ "Darkness", ], name: { en: "Destructive Roar", }, effect: { en: "Flip a coin. If heads, discard 1 Energy card attached to 1 of your opponent's Pokémon.", }, }, { cost: [ "Darkness", "Colorless", "Colorless", ], name: { en: "Tail Slap", }, damage: 30, }, { cost: [ "Darkness", "Darkness", "Colorless", "Colorless", "Colorless", ], name: { en: "Gigacrush", }, effect: { en: "Each player discards the top 3 cards from his or her deck.", }, damage: 60, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card