Attacking planets: Difference between revisions

From Galactic Empire wiki
Line 25: Line 25:


== Alternate scenarios ==
== Alternate scenarios ==
If you attack with troops while fighters are still present on the planet, the fighters will take out anywhere between 9 and 43 troops per fighter.<ref>GECMDS.C, lines 3659-3668</ref>
If you attack with troops while fighters are still present on the planet, the fighters will take out anywhere between 9 and 43 troops per fighter, before the troop-on-troop battle begins.<ref>GECMDS.C, lines 3659-3668</ref> Troops cannot take out fighters.


== Spies ==
== Spies ==
Spies level of confidence is random number between 50 and 98.<ref>GEPLANET.C line 168: d_odds = 50.0+rndm(48.0);</ref> For example, if the spy has a level of confidence of 75, the amount of an item reported can be anywhere between 75% of the actual amount and 125% of the actual amount.<ref>GEPLANET.C line 176: d_rptcnt = d_itemcnt - (d_itemcnt*rndm(d_odds)) + (d_itemcnt*rndm(d_odds));</ref>
Spies level of confidence is random number between 50 and 98.<ref>GEPLANET.C line 168: d_odds = 50.0+rndm(48.0);</ref> For example, if the spy has a level of confidence of 75, the amount of an item reported can be anywhere between 75% of the actual amount and 125% of the actual amount.<ref>GEPLANET.C line 176: d_rptcnt = d_itemcnt - (d_itemcnt*rndm(d_odds)) + (d_itemcnt*rndm(d_odds));</ref>

Revision as of 19:52, 8 May 2024

Stages

Preparation

Fighters take out fighters

Fighters take out fighters and other items

Fighters take out fighters, and some return

No more fighters

Troops take out troops

The amount of attacking troops killed is between 0.25 and 1.5 multiplied by the amount defending troops (by default). If there are plenty of defending troops, all attacking troops will always be lost. If not all attacking troops are lost in an attack, they return to the ship.

  • Example 1: 500 troops attack a planet with 2000 troops. Since 500 (2000×0.25) is the minimum amount of attacking troops that can be lost, all attacking troops will always be lost.
  • Example 2: 500 troops attack a planet with 1000 troops. The amount of attacking troops that can be lost is calculated as between 250 (1000×0.25) and 1500 (1000×1.5), but of course there were only 500 attacking troops. Therefore, there is a 80% chance all 500 troops will be lost, and a 20% chance that it will be between 250 and 500.
  • Example 3: 500 troops attack a planet with 250 troops. The amount of attacking troops that can be lost is calculated as between 62 (250×0.25, rounded down) and 375 (250×1.5). Some troops will always return.

Troops take out troops and other items

Troops take out troops, and some return

YAAAA!

Alternate scenarios

If you attack with troops while fighters are still present on the planet, the fighters will take out anywhere between 9 and 43 troops per fighter, before the troop-on-troop battle begins.[1] Troops cannot take out fighters.

Spies

Spies level of confidence is random number between 50 and 98.[2] For example, if the spy has a level of confidence of 75, the amount of an item reported can be anywhere between 75% of the actual amount and 125% of the actual amount.[3]

  1. GECMDS.C, lines 3659-3668
  2. GEPLANET.C line 168: d_odds = 50.0+rndm(48.0);
  3. GEPLANET.C line 176: d_rptcnt = d_itemcnt - (d_itemcnt*rndm(d_odds)) + (d_itemcnt*rndm(d_odds));