Page 2 of 2

Re: Fleet bases underwhelming?

Posted: Thu Feb 13, 2020 11:36 pm
by gaerzi
Master of Orion has a fleet command point system. Each orbital base you have bring you some command points. Higher base tiers give you more points, but you can also upgrade a lower tier into a higher tier. If your fleet exceeds your command point total (either because you built more ships, or because you lost some bases) then your fleet maintenance costs increase dramatically.

A system like that could make fleet bases more useful, however it'd be one extra resource to juggle and that's not necessarily a good idea. It's just what all this talk about tying maintenance to star bases somehow made me think of it.

Re: Fleet bases underwhelming?

Posted: Sun Feb 23, 2020 3:51 pm
by DanTheTerrible
I was never a fan of MoO2 command points. They felt artificial and gamy and added micromanagement. I prefer the more straightforward SiS system of maintenance costs, which has the added benefit of making ship design more interesting by allowing sacrifices in capability to reduce maintenance.

However, a different MoO2 concept has occurred to me: larger MoO2 stations added to command and detection range. I think it would be cool if SiS added a possible station module that adds +1 or so to command range, and/or incoming fleet detection range. Call them hyperwave relay links or something. Fleet bases might have these built in.

Re: Fleet bases underwhelming?

Posted: Sun Mar 08, 2020 5:41 am
by siyoa
I always had certain vision for fleet bases, and despite the name, they were much less military oriented, this may become a mod one day :arrow:

Hydroponics Modules providing +5 food

Re: Fleet bases underwhelming?

Posted: Sun Mar 08, 2020 3:38 pm
by Arioch
5 Food is a lot... it's more than the starting farm on a high-fertility Garden world, and that's with 2 colonists working it. The entire starting output of a Garden world with 1 Farm and 6 colonists is only 7 Food. It's hard to imagine a module on a space station producing that much food.

Re: Fleet bases underwhelming?

Posted: Sun Mar 08, 2020 6:08 pm
by siyoa
Arioch wrote:5 Food is a lot... it's more than the starting farm on a high-fertility Garden world, and that's with 2 colonists working it. The entire starting output of a Garden world with 1 Farm and 6 colonists is only 7 Food. It's hard to imagine a module on a space station producing that much food.


yop :) (well...)

was not trying to balance it, just picked a number that is easy to spot while making sure my scripts are doing what they need to be doing ;)

I am not sure what would be right number, level 3 farm on garden world is producing 11 food when staffed with 2 population and cost next to nothing to build, although it takes a precious planet improvement slot

now, research for level 3 farm is 3000, space habitats are 800 and I may place hydroponic module as an advancement from that, so it might end up at 3000 as well, the cost to install (and energy consumption afterwards (need to install additional power generator maybe, i.e. additional cost) hydroponic module is quite high (lots of metal and hammers), so if one level 3 farm can produce 11 food in ideal conditions, 5 just might be on par given how late game technologies both are/will be ... or it may end up producing 2 food, not sure yet

EDIT: just added space station picture, to compare the cost of build of that with cost of build of farm, keep in mind that space station takes one of two precious orbital slots as well ... also, I might change the production value from fixed number to function of space_times (update_design_specs = increase_var 'food_gen' { space_times = 0, plus=5 },), so that mere Space station produces maybe 2 food and bigger stations produce more (but are much more costly to build) ... I have some scripts in the works for adding hardpoint slots (or changing hardpoint slot values) through research advancements :idea:

Re: Fleet bases underwhelming?

Posted: Tue Mar 10, 2020 7:35 pm
by siyoa
Diplomatic Modules

Re: Fleet bases underwhelming?

Posted: Tue Mar 10, 2020 7:41 pm
by siyoa
Asteroid Mining Module

Re: Fleet bases underwhelming?

Posted: Thu Mar 12, 2020 5:34 am
by siyoa
Economic Centres

Re: Fleet bases underwhelming?

Posted: Tue Mar 17, 2020 6:01 am
by siyoa
hope everyone is doing as good as they can, in these trying times

bit of an insight on quite slow progress (not much free time)

Shipyard gets
- additional System slot when Autorepair Systems are researched
- Armor, Shield and Dyson Swarm slots when Fleet Logistics are researched
- two Hangar slots (capacity 6) when Carriers are researched

Code: Select all

 if (empire:known 'Autorepair Systems') then
    add_slot (t,t1,t2,tname,'Shipyard','System','System','r1',
      {hardpoint_type="System", mtype="System", space=30, research="r1"})
  end

  if (empire:known 'Fleet Logistics') then
    add_slot (t,t1,t2,tname,'Shipyard','Station','Dyson','r1',
      {hardpoint_type="Dyson", mtype="Dyson", space=90, research="r1"})
    add_slot (t,t1,t2,tname,'Shipyard','System','Shield','r1',
      {hardpoint_type="Shield", mtype="Shield", space=30, research="r1"})
    add_slot (t,t1,t2,tname,'Shipyard','Shield','Armor','r1',
      {hardpoint_type="Armor", mtype="Armor", space=20, research="r1"})
  end

  if (empire:known 'Carriers') then
    add_slot (t,t1,t2,tname,'Shipyard','','Hangar','r1',
      {hardpoint_type="Hangar", mtype="Hangar", space=20, n=6, research="r1"})
    add_slot (t,t1,t2,tname,'Shipyard','Hangar','Hangar','r2',
      {hardpoint_type="Hangar", mtype="Hangar", space=20, n=6, research="r2"})
  end