Buffs

Buffs

Buffs are the Effects that increase a leek's Characteristics. They can be applied:

For example, the Plutonium Bazooka converts 5 % of the damage it deals into raw shield (raw resistance) for the shooter.

General behaviour

Some buffs are affected by the Science of the leek using the item, others are not. For example, the characteristics granted by the Motivation chip do not depend on the caster's characteristics (EFFECT_RAW_BUFF_TP effect), whereas those granted by the Rage chip do (EFFECT_BUFF_TP effect). As a general rule, if the effect name contains _RAW_, the effect does not depend on the caster's characteristics.

Buffs can only add a whole number of characteristic points to a leek: the value is always rounded. Thus, Acceleration and Seven League Boots need the leek using them to have some Science points for their MP buff to work every time.

If the effect depends on the caster's science, the formula to compute the buff value (that is, the number of points added to the target's characteristic) is:

buff_final = round((v1 + v2 * jet) * (1 + science_lanceur / 100) * facteur_de_zone * critique)

where v1 + v2 × jet is a float drawn uniformly at random between the bounds shown by the weapon or chip (for Rage, for instance, between 0.5 and 0.6), facteur_de_zone (area factor) depends on the target's position within the area of effect, and critique is 1.3 on a critical hit (1 otherwise).

If the effect does not depend on the caster's science, the formula is simply:

buff_final = round((v1 + v2 * jet) * facteur_de_zone * critique)

Raw buffs (_RAW_) are therefore affected by critical hits too.

Note the round: for other effects (heals, damage, armor, ...), being off by 1 rarely matters. Here, for MP and TP buffs, every point counts, and the fact that it is a round rather than a floor or a ceil is significant.

Concrete thresholds for TP and MP buffs

The table below shows the values obtained for TP and MP buffs depending on science_lanceur (caster's science), i.e. the interesting science thresholds to reach:

science_lanceur | MP buff of Acceleration and Seven League Boots (0.4 to 0.5) | TP buff of Rage (0.5 to 0.6) | TP buff of Whip (0.6 to 0.7) ------------|-----------|-----------|-------- 0 to 24 | 0 or 1 | 1 | 1 25 to 114 | 1 | 1 | 1 115 to 149 | 1 | 1 | 1 or 2 150 to 199 | 1 | 1 or 2 | 2 200 to 257 | 1 or 2 | 2 | 2 258 to 274 | 1 or 2 | 2 | 2 or 3 275 to 316 | 2 | 2 | 2 or 3 317 to 399 | 2 | 2 or 3 | 3 400 to 483 | 2 or 3 | 3 | 3 or 4 484 to 524 | 2 or 3 | 3 or 4 | 4 525 to 542 | 3 | 3 or 4 | 4 543 to 599 | 3 | 3 or 4 | 4 or 5 600 to 649 | 3 or 4 | 4 | 4 or 5 650 to 685 | 3 or 4 | 4 or 5 | 5 686 to 774 | 3 or 4 | 4 or 5 | 5 or 6 775 to 799 | 4 | 4 or 5 | 5 or 6 800 to 816 | 4 or 5 | 5 | 5 or 6 817 to 828 | 4 or 5 | 5 or 6 | 6 829 to 960 | 4 or 5 | 5 or 6 | 6 or 7

When the table says "n or n+1", the chances of getting n+1 rather than n increase with science_lanceur.

The computations go up to 960, which is the theoretical maximum for a leek's characteristics (without components or buffs).