I've been trying to fix Citadel's star, Blaze; in the Citadel system. It's currently hollow like in previous versions of Starsector, but emits the corona as normal.
Which files do I need to modify or create to make it impassible?
Also, how do I make a planet orbit further from the centre of the star system? Citadel's Gateway is within the corona edges and its really burning up every fleet going to and fro (burn goods, burn!).
Here's the planet's API I think:
//GATEWAY
PlanetAPI gateway = system.addPlanet("gateway", blaze, "Gateway", "arid", 0, 100, 1000, 381);
gateway.setCustomDescriptionId("citadel_gateway");
gateway.setFaction("citadeldefenders");
Also, it has an abandoned station orbiting it, do I have to change that as well? Here's its data:
//ABANDONDED STATION
SectorEntityToken neutralStation = system.addOrbitalStation("citadel_abandoned_station", system.getEntityById("Gateway"), 155, 200, 53, "Abandoned Orbital Customs", "neutral");
neutralStation.getMemory().set("$abandonedStation", true);
MarketAPI market = Global.getFactory().createMarket("citadel_abandoned_station_market", neutralStation.getName(), 0);
market.setPrimaryEntity(neutralStation);
market.setFactionId(neutralStation.getFaction().getId());
market.addCondition(Conditions.ABANDONED_STATION);
market.addSubmarket(Submarkets.SUBMARKET_STORAGE);
((StoragePlugin) market.getSubmarket(Submarkets.SUBMARKET_STORAGE).getPlugin()).setPlayerPaidToUnlock(true);
neutralStation.setMarket(market);
neutralStation.setCustomDescriptionId("citadel_gateway_station");
neutralStation.setInteractionImage("illustrations", "abandoned_station");
All of the above data is from Citadel.java.
Thanks for listening!