Design the ships inside the carrier module?

I have recently added the Cylon Faction to my steam workshop (you are all welcome to it and I think it will be enjoyable to play. All feedback is welcome) and now Im starting to design the ships for this faction. The problem is that Cylons many times depend on carriers and therefore I wish to design the ships thats inside the carrier module. Is that possible?

6,706 views 4 replies
Reply #1 Top

Currently there's no way to do it in the game. I think a lot of us are hoping they'll add the ability to create and choose a design to use in the future.

 

You might be able to edit the XML to do it though according to this: https://forums.galciv3.com/465767/page/1/#3551839.

Reply #2 Top

Thanks for the answer. I guees I have to live with this until they hopefully change it.

Reply #3 Top

If what you want to do is change the appearance of the fighters launched by your carriers rather than change what the fighters carry, then you're going to want to play with the fighter's entry in ShipClassDefs.XML or the equivalent file for your mod. This is the ShipClassDefs.XML entry for the Terran Alliance Assault Fighter:

  <ShipClass>
    <InternalName>TerranAssaultFighter</InternalName>
    <DisplayName>TerranAssaultFighter_Class_Name</DisplayName>
    <Description>TerranAssaultFighter_Dec</Description>
    <ThumbnailOverride>Temp_Terran_Knight_Alpha_01.png</ThumbnailOverride>
    <ShipHullType>Tiny</ShipHullType>
    <ShipRule>Balanced</ShipRule>
    <ShipDesign>Terran_Knight_01T</ShipDesign>
    <AIShipClass>Interceptor</AIShipClass>
    <StrategicIcon>Knight</StrategicIcon>
    <BlueprintDef>AssaultFighterBlueprint</BlueprintDef>
  </ShipClass>

The line <ShipDesign>Terran_Knight_01T</ShipDesign> is the line that chooses the hull model used for the fighter, if I'm not mistaken. If I were to change that line to <ShipDesign>Terran_Ranger_02T</ShipDesign>, which is the line used in the Terran Ranger class definition, then the Assault Fighter would look like the Terran Ranger design does.

If you want to change what the fighter carries, then you'll have to mess around with the blueprint file, but that won't significantly impact the appearance of the fighters launched by the carriers.

Reply #4 Top

Keep in mind tho there are only 4 total types of fighters and you cannot add more, well I can but its a total bitch, I will be doing a tutorial for schema editing after I finish my current mod project in a few days.