Bow mechanics added, documentation updated.

This commit is contained in:
Storm Dragon
2026-01-26 12:48:14 -05:00
parent 837deacf6c
commit efd90b596c
16 changed files with 484 additions and 100 deletions

View File

@@ -37,9 +37,12 @@ const int SLING_DAMAGE_MAX = 8;
const int SLING_RANGE = 8;
// Bow settings
const int BOW_DAMAGE_MIN = 6;
const int BOW_DAMAGE_MAX = 9;
const int BOW_DAMAGE_MIN = 0;
const int BOW_DAMAGE_MAX = 10;
const int BOW_RANGE = 12;
const int BOW_DRAW_TIME_MS = 1000;
const int ARROW_FLIES_DURATION_MS = 230;
const int BOW_MISS_EXTRA_TILES = 3;
const int ARROWS_PER_CRAFT = 12;
const int ARROW_CAPACITY_PER_QUIVER = 12;