-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
586 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
src/com/fs/starfarer/api/impl/campaign/intel/events/HALuddicPathDealFactor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.fs.starfarer.api.impl.campaign.intel.events; | ||
|
||
import com.fs.starfarer.api.ui.TooltipMakerAPI; | ||
import com.fs.starfarer.api.ui.TooltipMakerAPI.TooltipCreator; | ||
|
||
public class HALuddicPathDealFactor extends BaseOneTimeFactor { | ||
|
||
public HALuddicPathDealFactor(int points) { | ||
super(points); | ||
} | ||
|
||
@Override | ||
public String getDesc(BaseEventIntel intel) { | ||
return "Deal made with Luddic Path"; | ||
} | ||
|
||
@Override | ||
public TooltipCreator getMainRowTooltip() { | ||
return new BaseFactorTooltip() { | ||
@Override | ||
public void createTooltip(TooltipMakerAPI tooltip, boolean expanded, Object tooltipParam) { | ||
tooltip.addPara("You've recently reached an understanding with the Luddic Path.", | ||
0f); | ||
} | ||
|
||
}; | ||
} | ||
|
||
} |
30 changes: 30 additions & 0 deletions
30
src/com/fs/starfarer/api/impl/campaign/intel/events/HAPatherBaseDestroyedFactor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.fs.starfarer.api.impl.campaign.intel.events; | ||
|
||
import com.fs.starfarer.api.ui.TooltipMakerAPI; | ||
import com.fs.starfarer.api.ui.TooltipMakerAPI.TooltipCreator; | ||
|
||
public class HAPatherBaseDestroyedFactor extends BaseOneTimeFactor { | ||
|
||
public HAPatherBaseDestroyedFactor(int points) { | ||
super(points); | ||
} | ||
|
||
@Override | ||
public String getDesc(BaseEventIntel intel) { | ||
return "Luddic Path base destroyed"; | ||
} | ||
|
||
@Override | ||
public TooltipCreator getMainRowTooltip() { | ||
return new BaseFactorTooltip() { | ||
@Override | ||
public void createTooltip(TooltipMakerAPI tooltip, boolean expanded, Object tooltipParam) { | ||
tooltip.addPara("A Luddic Path base that was supporting Pather cells at your colonies was destroyed by " | ||
+ "your fleet.", | ||
0f); | ||
} | ||
|
||
}; | ||
} | ||
|
||
} |
30 changes: 30 additions & 0 deletions
30
src/com/fs/starfarer/api/impl/campaign/intel/events/HAPirateBaseDestroyedFactor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.fs.starfarer.api.impl.campaign.intel.events; | ||
|
||
import com.fs.starfarer.api.ui.TooltipMakerAPI; | ||
import com.fs.starfarer.api.ui.TooltipMakerAPI.TooltipCreator; | ||
|
||
public class HAPirateBaseDestroyedFactor extends BaseOneTimeFactor { | ||
|
||
public HAPirateBaseDestroyedFactor(int points) { | ||
super(points); | ||
} | ||
|
||
@Override | ||
public String getDesc(BaseEventIntel intel) { | ||
return "Pirate base destroyed"; | ||
} | ||
|
||
@Override | ||
public TooltipCreator getMainRowTooltip() { | ||
return new BaseFactorTooltip() { | ||
@Override | ||
public void createTooltip(TooltipMakerAPI tooltip, boolean expanded, Object tooltipParam) { | ||
tooltip.addPara("A pirate base that was supporting pirate activity at your colonies was destroyed by " | ||
+ "your fleet.", | ||
0f); | ||
} | ||
|
||
}; | ||
} | ||
|
||
} |
29 changes: 29 additions & 0 deletions
29
src/com/fs/starfarer/api/impl/campaign/intel/events/HAPirateKingDealFactor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.fs.starfarer.api.impl.campaign.intel.events; | ||
|
||
import com.fs.starfarer.api.ui.TooltipMakerAPI; | ||
import com.fs.starfarer.api.ui.TooltipMakerAPI.TooltipCreator; | ||
|
||
public class HAPirateKingDealFactor extends BaseOneTimeFactor { | ||
|
||
public HAPirateKingDealFactor(int points) { | ||
super(points); | ||
} | ||
|
||
@Override | ||
public String getDesc(BaseEventIntel intel) { | ||
return "Deal made with pirate king"; | ||
} | ||
|
||
@Override | ||
public TooltipCreator getMainRowTooltip() { | ||
return new BaseFactorTooltip() { | ||
@Override | ||
public void createTooltip(TooltipMakerAPI tooltip, boolean expanded, Object tooltipParam) { | ||
tooltip.addPara("You've recently made a deal with a pirate king in control of a nearby station.", | ||
0f); | ||
} | ||
|
||
}; | ||
} | ||
|
||
} |
Oops, something went wrong.