Starsector API
Loading...
Searching...
No Matches
HAHersperusTacBombardmentFactor.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.campaign.intel.events;
2
3import com.fs.starfarer.api.ui.TooltipMakerAPI;
4import com.fs.starfarer.api.ui.TooltipMakerAPI.TooltipCreator;
5
7
9 super(points);
10 }
11
12 @Override
13 public String getDesc(BaseEventIntel intel) {
14 return "Tactical bombardment of Hesperus";
15 }
16
17 @Override
18 public TooltipCreator getMainRowTooltip(BaseEventIntel intel) {
19 return new BaseFactorTooltip() {
20 @Override
21 public void createTooltip(TooltipMakerAPI tooltip, boolean expanded, Object tooltipParam) {
22 tooltip.addPara("A tactical bombardment of Hersperus - the military stronghold of the Knights of Ludd - "
23 + "has severely disrupted the efforts of the Luddic Church to pressure your colonies.",
24 0f);
25 }
26
27 };
28 }
29
30}