Game Mode: load.lst

The first line is a list of Size letters with a | (pipe) delimiter separating it from its load limit multiplier.

The second through next-to-last line contain a strength value (must be incremental starting at 1) and the last line indicates the multiplier and power escalation for every 10 strength points beyond the end of the list.

This is to represent the multiplier of 4 for the first 10 beyond the end of the strength list, 16 for the next 10 (4 to the power of 2), 64 for the next 10 (4 to the power of 3) and so on.

You can change the multiplier (4) if you wish or add to the list of strength/capacity lines, but they must be incremental (no skipping strength scores).


Tag Name: SIZEMULT:x|y

Variables Used (x): Text (Name of size category)

Variables Used (x): Number (Decimal Fractions)

What it does:

Defines the Load Categories for the Size of the Creature.

Example:

SIZEMULT:FINE|0.125
SIZEMULT:Dimunitive|0.25
SIZEMULT:Tiny|0.5
SIZEMULT:Small|0.75
SIZEMULT:Large|2
SIZEMULT:Huge|4
SIZEMULT:Gargantuan|8
SIZEMULT:Colossal|16

These six categories must be included in all gameModes.


Tag Name: LOAD:x|y

Variables Used (x): Number (Strength)

Variables Used (x): Number ((Heavy) Weight Carried)

What it does:

Defines the Weight Categories for the Strength of the Creature.

Example:

LOAD:0|0

This give a strength of 0 a heavy load of 0.

LOAD:10|100

This give a strength of 10 a heavy load of 100.

LOAD:27|1040

This give a strength of 27 a heavy load of 1040.


*** New 5.11.11

Tag Name: LOADSTEPMULT:x

Variables Used (x): Number (Default number is 10)

What it does:

Used for determining encumbrance limits for values outside the range defined by the LOAD tags

Example:

LOADSTEPMULT:4

When the encumbrance limits are exceeded in the SIZEMULT:x|y the y value switched to 4.


Tag Name: LOADMULT:x

Variables Used (x): Number

What it does:

Set the original value that is changed in the SizeAdjustment.lst file

Example:

LOADMULT:4

Sets the original value to 1.


*** New 5.7.12

Tag Name: ENCUMBRANCE:x|y||z

Variables Used (x): Text (Name of load category)

Variables Used (x): Number (Multiplier)

Variables Used (z): Number (Check Penalty)

What it does:

Defines the Load Categories for the gameMode. This was previously hardcoded but is now set in the Load.lst file. All gameModes must include the six categories listed below. Additional categories may be defined as needed and the ENCUMBRANCE tag also defines the output token used. For example if you set ENCUMBRANCE:FooBar|8 the output token would be WEIGHT.FOOBAR. See the entry for the output token WEIGHT

Example:

ENCUMBRANCE:Light|1/3||0
ENCUMBRANCE:Medium|2/3||-3
ENCUMBRANCE:Heavy|1||-6
ENCUMBRANCE:OverHead|1||-6
ENCUMBRANCE:OffGround|2||-6
ENCUMBRANCE:PushDrag|5||-6

These six categories must be included in all gameModes.