Variables - vkdolea/age-system GitHub Wiki

Damage formulas and a few Modifiers can add Item owner's Abilities or level. The following list have all possible formula attributes:

  • @acc (Accuracy ability value)
  • @comm (Communication ability value)
  • @cons (Constitution ability value)
  • @cunn (Cunning ability value)
  • @dex (Dexterity ability value)
  • @fight (Fighting ability value)
  • @int (Intelligence ability value)
  • @magic (Magic ability value)
  • @per (Perception ability value)
  • @str (Strength ability value)
  • @will (Willpower ability value)
  • @level (character level)

Example of formula to roll 2d6 plus Strength, character level and Willpower: 2d6 + @str + @level + @will.