An entity with this trait can accumulate Upgrade Points (see Traits.Loot.UP) and eventually accumulate enough to gain a promotion. This basically replaces him with a more advanced version of the unit.

Only Infantry Citizen Soldiers and Cavalry Citizen Soldiers have this ability.

Curr

BRIEF DESCRIPTION ::The number of Upgrade Points that the entity has currently accumulated. This naturally starts at zero, and resets to zero when the entity is promoted.

NewEntity

BRIEF DESCRIPTION ::This is the entity name of the replacement entity this entity will become when the pre-requisites for transformation are met.

=Rank= BRIEF DESCRIPTION ::The current rank of this entity.

Value is a number ranged from 0-3.

0: Default. Has no rank and will never have a rank (most units, gaia entities, etc). 1: Basic. Units that can gain ranks start at this level. 2: Advanced: First promotion. 3: Ultimate: Second promotion.

Req

BRIEF DESCRIPTION ::The number of Upgrade Points that the entity must accumulate in order to be promoted.

Generally this is 600 for Infantry and 900 for Cavalry.

[code]

  <Traits>
      // Basic Hoplite can be promoted to Advanced Hoplite with enough experience.
      <Up
          curr="0"
          newentity="hele_isw_a"
          rank="1"
          req="600"
      />
  </Traits>

[/code]

[quote][size=7][u]EXPERIENTIAL UPGRADE SYSTEM[/u][/size]

Citizen Soldiers have the unique ability to gain ranks and become more powerful as they gain experiance while 'surviving' in the game world. The reasons why we are doing this is the following: [list]

[*] ensures that the player's most basic units can still serve a purpose in the late game.

[*] attatchment to individual units to encourage the player to avoid 'cannon fodder' millitary tactics

[*] minimise the number of 'upgrade techs' for an automated upgrade system

[*] emulates real live experiance (gain skill the more you do something)

[*] fluid and dynamic keeping with the vision of the 'slice in time' concept

[/list] UPGRADE RANKS

A rank is the level of promotion a Citizen Soldier has achieved. With each automatic upgrade to a new rank, the unit gains bonuses to his statistics (by pointing to a new entity with an entirely new set of statistics).

In general, higher-ranking units are stronger in combat, but weaker in economic tasks such as gathering resources than lower-ranking units. [list]

[*] Basic: The starting rank.

[*] Advanced: The second rank.

[*] Ultimate (Elite in code terms): The final rank.

[/list] 2. UPGRADE APPEARANCE

To determine the rank of Citizen Soldiers at a glance, without the need for cluttering rank icons over units, we will use the following convention: [list]

[*] Basic: poorest rank, little to no armour, elementary weapons, avoid helmets.

[*] Advanced: medium class, some armour, average weapons, helmet.

[*] Ultimate: richest class, lots of armour, finest weapons, helmet with decoration.

[/list]

Note: The history and graphics departments have studied literally hundreds of pics of all kinds of units, this was the most visible, recognisable standardisation of uniform that we could produce for such a wide variety of units, while still retaining a degree of realism.

GAINING EXPERIENCE

A Citizen Soldier must acquire a certain quantity of points in order to gain a rank. The amount required is dependent upon its PointsRequired:

Once a Citizen Soldier accumulates the necessary number of experience points, we perform an entity swap (NewEntity) and clean slate of points.

Citizen Soldiers gain experience in two methods: automatically over a period of time (slow), and by participating in combat.

Time

Citizen Soldiers automatically gain upgrade points for as long as they survive, at a continuous rate of 1 point per second.

Battle

Each unit has a point value (UpPoints). A Citizen Soldier gains this bonus to his upgrade when he makes the kill.

NOTE: Attacking animals does not count toward points.[/quote]

Last modified 16 years ago Last modified on Feb 23, 2008, 4:19:00 AM
Note: See TracWiki for help on using the wiki.