001package com.fs.starfarer.api.impl.campaign.intel.events; 002 003import com.fs.starfarer.api.ui.TooltipMakerAPI; 004import com.fs.starfarer.api.ui.TooltipMakerAPI.TooltipCreator; 005 006public class HAKazeronTacBombardmentFactor extends BaseOneTimeFactor { 007 008 public HAKazeronTacBombardmentFactor(int points) { 009 super(points); 010 } 011 012 @Override 013 public String getDesc(BaseEventIntel intel) { 014 return "Tactical bombardment of Kazeron"; 015 } 016 017 @Override 018 public TooltipCreator getMainRowTooltip(BaseEventIntel intel) { 019 return new BaseFactorTooltip() { 020 @Override 021 public void createTooltip(TooltipMakerAPI tooltip, boolean expanded, Object tooltipParam) { 022 tooltip.addPara("A tactical bombardment of Kazeron - the nerve center and military hub of the Persean " 023 + "League - has severely disrupted its efforts to bring pressure on your colonies.", 024 0f); 025 } 026 027 }; 028 } 029 030}