wiki.z3.ca

FreelanceUseCases

Entities in the world: Player controller Ships and Planets (can be owned by players). Also the world.

= Ship - World interactions =

== Travel ==

A ship can transport itself from planet to planet. Travel takes time, computed by the following formula:

(Travel Time) = k * (Distance) * (Ship Mass)/(Ship Engine)

Once a ship arrives at a planet, it can:

The following can happen if the player lands:

  1. If the planet is neutral, the ship lands safely. There may be an encounter waiting for the player.
  2. If the planet is friendly, the ship lands safely and gets safe harbor from the planet, strengthening it's defenses whilst stationed there.
  3. If the planet is not friendly, the ship crash-lands and is faced with an encounter. It's defenses are weakened while stationed there.

''Implementation: need some kind of encounter queue for each ship!''

UI: Player is presented with a map of nearby stars and planets. Player can click on any star or planet to see information about it. When the player clicks on a planet, he sees how long of a journey it will be to travel there. If his ship has goods in its hull, he sees the supply and demand values for that good too.

''Restriction: only one type of good in the hull!''

''Note: supply and demand is a function of planet size, multiplied by the planet's modifier for the goody (set randomly). Planet size is determined by the following:''

(Planet Size) = [Sum over all levels of buildings on the planet]

=== Acceleration ===

Acceleration determines how much time a ship takes entering into orbit of a planet, and leaving orbit. This is very significant, since ships cannot be harmed while in transit between planets. Thus better acceleration means that ships will spend less time visible to other ships.

Also, acceleration determines if a ship can flee from another ship.

== Encounters ==

Encounters are events that occur to ships. Some are positive, involving a resource find or upgrade. Others involve being attacked by NPCs while in transit.

Sometimes, when a ship does something (like travel or a trade transaction), there is a random encounter.

= Ship - Ship interactions =

== Combat ==

A ship can try to attack another ship on the same planet as it. This, however, is very risky, since it causes collateral damage to other ships and potentially structures as well.

Combat is automated. The attacker attacks and the defender retaliates. When the HP of the defending ship is below the threshold, the defender attempts to flee. If the defender fails to flee, the attacker gets to salvage some of defender's stuff. The defender becomes in need of repair (which takes some time), and stops its activity. If the defender flees, the defender carries on with its activity and the attacker goes back into orbit.

If the attacker loses, the defender carries on with what it was doing, and the attacker suffers a severe penalty.

= Ship - Planet interactions =

== Buy goods ==

A ship in orbit can buy goods from the factory at the planet's supply rate.

== Sell goods ==

A ship in orbit can sell goods to the factory at the planet's demand rate.

== Landing ==

A ship can land in the planet's spaceport, giving it an extra defensive bonus. Players typically do this before signing out of the game.

== Upgrading Ship ==

A ship can upgrade its components at the construction yard.

== Conquering ==

A planet can be conquered by some means which is very difficult.

== Building upgrade ==

A ship in orbit can spend credits on upgrading a building on the planet. TODO: what benefit a player gains by doing this. Maybe a share-like system where players get back partial profit from their investment.