mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-26 06:40:08 +01:00
Merge pull request #1771 from CHOMPStationBot/upstream-merge-10105
[MIRROR] Fixes Traits
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user