Skip to content

Commit

Permalink
SPECIAL Adjustments
Browse files Browse the repository at this point in the history
Minor edits to reduce the dependency on two specific stats, may adjust further as needed.
  • Loading branch information
Aurrain committed Sep 9, 2024
1 parent c53a61c commit 654aceb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/mob/special_stats.dm
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ proc/get_top_level_mob(mob/S)
/// STRENGTH

/obj/item/proc/calc_melee_dam_mod_from_special(mob/living/user)
return ((user.special_s - SPECIAL_DEFAULT_ATTR_VALUE) * 1.5)
return ((user.special_s - SPECIAL_DEFAULT_ATTR_VALUE) * 1.1)

/datum/species/proc/calc_unarmed_dam_mod_from_special(mob/living/user)
return ((user.special_s - SPECIAL_DEFAULT_ATTR_VALUE) * 1.5)
return ((user.special_s - SPECIAL_DEFAULT_ATTR_VALUE) * 1.1)

/// PERCEPTION

/obj/item/ammo_casing/proc/calc_bullet_spread_mod_from_special(mob/living/user)
return ((user.special_p - SPECIAL_DEFAULT_ATTR_VALUE) * 5) // +/- 5 degrees of innate spread per lvl
return ((user.special_p - SPECIAL_DEFAULT_ATTR_VALUE) * 2) // +/- 5 degrees of innate spread per lvl

/// ENDURANCE

Expand Down

0 comments on commit 654aceb

Please sign in to comment.