Fractal Softworks Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Starsector 0.97a is out! (02/02/24); New blog post: Anubis-class Cruiser (12/20/24)

Author Topic: Mothball ship capture  (Read 1099 times)

BaBosa

  • Captain
  • ****
  • Posts: 445
    • View Profile
Mothball ship capture
« on: February 18, 2023, 03:25:38 AM »

Someone has suggested this before but it always feels bad when I have to destroy the ships that are being transported as mothballed ships. With other commodities we can capture them but not ships.
It would be nice if your ships ignored mothballed ships mostly and you could claim victory if there’s only mothballed ships left and then capture them.
Logged

Zsar

  • Captain
  • ****
  • Posts: 312
    • View Profile
Re: Mothball ship capture
« Reply #1 on: February 18, 2023, 03:43:21 AM »

Can I upvote this? I would like to upvote this.

Would also be nice, if NPC fleets captured your mothballed ships the same way (e.g. if caught with low CR, so you might want to try and get some of them back after a few days).
Logged

BCS

  • Captain
  • ****
  • Posts: 279
    • View Profile
Re: Mothball ship capture
« Reply #2 on: February 18, 2023, 04:21:28 AM »

That would be hard since it's supposed to be abstract. You don't really know WHAT ships/weapons are these.
Logged

BaBosa

  • Captain
  • ****
  • Posts: 445
    • View Profile
Re: Mothball ship capture
« Reply #3 on: February 18, 2023, 05:49:19 AM »

You do know what ships they have because you see them in the fleet composition as mothballed ships. Weapons in cargo are random.
Logged

Rusty Edge

  • Commander
  • ***
  • Posts: 204
    • View Profile
Re: Mothball ship capture
« Reply #4 on: February 18, 2023, 07:56:22 AM »

It's also very funny to watch the empty mothballed ships fly off and navigate in the campaing layer after you've destroyed all of the crewed escorts.
Logged

Cruacious

  • Lieutenant
  • **
  • Posts: 88
    • View Profile
Re: Mothball ship capture
« Reply #5 on: February 18, 2023, 01:36:52 PM »

This is an idea I do agree with. Being able to capture mothballed ships would be a nice enticement for pirate style players, or those who are fighting a faction and need some replacement hulls.
Logged

BCS

  • Captain
  • ****
  • Posts: 279
    • View Profile
Re: Mothball ship capture
« Reply #6 on: February 19, 2023, 12:14:30 AM »

You do know what ships they have because you see them in the fleet composition as mothballed ships.

Well, and have you ever seen anything that wasn't low-tech? The icon itself is a Hound.
Logged

Zsar

  • Captain
  • ****
  • Posts: 312
    • View Profile
Re: Mothball ship capture
« Reply #7 on: February 22, 2023, 05:48:36 AM »

Well, and have you ever seen anything that wasn't low-tech? The icon itself is a Hound.
I have attached an image. One can see exactly how many and which hull. These are exactly the (mothballed and other) ships of the fleet. No randomness, no uncertainty. The ships with a red lightning outline are exactly the ships this suggestion concerns itself with, the rest are exactly not.

You can get them in code via
Code
List<FleetMemberAPI> ships = <fleetHandle>.getFleetData().getMembersListCopy();
for (FleetMemberAPI ship : ships) {
  if (ship.isMothballed()) {
    <do stuff>
  }
}
Logged