Anvil Stats

What are Anvil Stats?

Anvil Stats are permanent character attribute buffs.

Features

  • Offered to players on specific rounds

  • Players choose one Anvil Stat from three options

  • Random selection if no choice is made

  • Re-roll system using tokens

Operations

Operation
Description
Formula

ADD_NUMBER

Add modifier.

base + modifier

ADD_SCALAR

Multiply the base.

base x (1 + modifier)

MULTIPLY_SCALAR_1

Multiply the final value.

final x (1 + modifier)

Base: The base value of a player's attribute.

Final: The final value of a player's attribute (this includes all the previous modifiers).

Modifiers

Config Example

FLAT_DAMAGE:
  name: "Damage"
  modifiers:
    - "GENERIC_ATTACK_DAMAGE ADD_NUMBER{0.45;0.9}"

SCALING_MOVEMENT_SPEED:
  name: "Movement Speed"
  modifiers:
    - "GENERIC_MOVEMENT_SPEED ADD_SCALAR{0.012;0.024}"

BERSERKER:
  name: "Berserker"
  modifiers:
    - "GENERIC_ATTACK_DAMAGE ADD_SCALAR{0.02;0.04}"
    - "GENERIC_MAX_HEALTH ADD_SCALAR{0.025;0.05}"

Last updated