Merge pull request #1771 from CHOMPStationBot/upstream-merge-10105

[MIRROR] Fixes Traits
This commit is contained in:
Nadyr
2021-04-11 06:42:53 -04:00
committed by GitHub
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -493,7 +493,8 @@ var/global/list/remainless_species = list(SPECIES_PROMETHEAN,
if(!instance.name)
continue //A prototype or something
var/category = instance.category
traits_costs[path] = category
var/cost = instance.cost
traits_costs[path] = cost
all_traits[path] = instance
switch(category)
if(-INFINITY to -0.1)
@@ -13,13 +13,13 @@
/datum/trait/positive/hardy
name = "Hardy"
desc = "Allows you to carry heavy equipment with less slowdown."
cost = 2
cost = 1
var_changes = list("item_slowdown_mod" = 0.5)
/datum/trait/positive/hardy_plus
name = "Major Hardy"
desc = "Allows you to carry heavy equipment with almost no slowdown."
cost = 3
cost = 2
var_changes = list("item_slowdown_mod" = 0.25)
/datum/trait/positive/endurance_high