1
General Discussion / Re: ETA for next Release?
« on: September 29, 2020, 12:50:50 PM »
It come when it's ready, AKA Soon™ (IE, somewhere between 'later' and 'much later') ©
Starsector 0.97a is out! (02/02/24); New blog post: Planet Search Overhaul (07/13/24)
In my current game I've found 2 derelict Legions. Could not recover either... I kind of wonder if there is a fixed number of them in the sector and some of them are recoverable, some not, or if it's a random chance each time. Maybe I should try save-scumming? They're basically my favorite ship (apart from Sunder which I typically pilot).
Being able to order XIV Legions would be great.
are no stats in some xml or json files?
but where can I see the base stat? Is it something with max speed?
there is a skill Evasive Action 1 +50%
public static final float MANEUVERABILITY_BONUS = 50;
public void apply(MutableShipStatsAPI stats, HullSize hullSize, String id, float level) {
stats.getAcceleration().modifyPercent(id, MANEUVERABILITY_BONUS);
stats.getDeceleration().modifyPercent(id, MANEUVERABILITY_BONUS);
stats.getTurnAcceleration().modifyPercent(id, MANEUVERABILITY_BONUS * 2f);
stats.getMaxTurnRate().modifyPercent(id, MANEUVERABILITY_BONUS);
}
and a module Aux Thrusters +50%
public static final float MANEUVER_BONUS = 50f;
public void applyEffectsBeforeShipCreation(HullSize hullSize, MutableShipStatsAPI stats, String id) {
stats.getAcceleration().modifyPercent(id, MANEUVER_BONUS * 2f);
stats.getDeceleration().modifyPercent(id, MANEUVER_BONUS);
stats.getTurnAcceleration().modifyPercent(id, MANEUVER_BONUS * 2f);
stats.getMaxTurnRate().modifyPercent(id, MANEUVER_BONUS);
}
shipsystem Maneuvering Jets +?%
stats.getMaxSpeed().modifyFlat(id, 50f);
stats.getAcceleration().modifyPercent(id, 200f * effectLevel);
stats.getDeceleration().modifyPercent(id, 200f * effectLevel);
stats.getTurnAcceleration().modifyFlat(id, 30f * effectLevel);
stats.getTurnAcceleration().modifyPercent(id, 200f * effectLevel);
stats.getMaxTurnRate().modifyFlat(id, 15f);
stats.getMaxTurnRate().modifyPercent(id, 100f);
Recover administrators button is greyed out
Aurora being the best at the job: 30FP, 3 Grav Beams, an orgy of tac lasers
Proto-Life: Number (1) of which (organics 1)(irradiated 1)(Toxic atmosphere 1)(hot 1)
Red Barren: Number (1) of which (rare ore 1)(ore 1)(no atmosphere 1)(tectonic activity 1)(hot 1)