001package com.fs.starfarer.api.impl.campaign.intel.events.ht;
002
003import com.fs.starfarer.api.impl.campaign.intel.events.BaseEventIntel;
004import com.fs.starfarer.api.impl.campaign.intel.events.BaseFactorTooltip;
005import com.fs.starfarer.api.impl.campaign.intel.events.BaseOneTimeFactor;
006import com.fs.starfarer.api.ui.TooltipMakerAPI;
007import com.fs.starfarer.api.ui.TooltipMakerAPI.TooltipCreator;
008
009/**
010 * Unused; replaced with Active Sensor Burst scanning these types of things, and with HTScanFactor.
011 * 
012 */
013@Deprecated public class HTBlackHoleFactor extends BaseOneTimeFactor {
014        
015        public HTBlackHoleFactor() {
016                super(HTPoints.SCAN_BLACK_HOLE_SHORT_RANGE);
017        }
018
019        @Override
020        public String getDesc(BaseEventIntel intel) {
021                return "Black hole scanned";
022        }
023
024        @Override
025        public TooltipCreator getMainRowTooltip(BaseEventIntel intel) {
026                return new BaseFactorTooltip() {
027                        @Override
028                        public void createTooltip(TooltipMakerAPI tooltip, boolean expanded, Object tooltipParam) {
029                                tooltip.addPara("A close-range scan of a black hole provides insight into the topography of "
030                                                + "the surrounding area in hyperspace.",
031                                                0f);
032                        }
033                        
034                };
035        }
036        
037}