Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit dac65ea

Browse files
bit of rebalancing
1 parent dda6cdd commit dac65ea

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

code/modules/jobs/job_types/captain.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
SKILL_SCIENCE = EXP_NONE,
3838
SKILL_FITNESS = EXP_MID,
3939
)
40-
skill_points = 2
40+
skill_points = 4
4141

4242
mind_traits = list(TRAIT_DISK_VERIFIER)
4343

code/modules/jobs/job_types/chief_medical_officer.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636
SKILL_PHYSIOLOGY = EXP_MID,
3737
SKILL_MECHANICAL = EXP_NONE,
3838
SKILL_TECHNICAL = EXP_NONE,
39-
SKILL_SCIENCE = EXP_MID,
39+
SKILL_SCIENCE = EXP_LOW,
4040
SKILL_FITNESS = EXP_LOW,
4141
)
42-
skill_points = 3
42+
skill_points = 4
4343

4444
departments_list = list(
4545
/datum/job_department/medical,

code/modules/mob/living/carbon/human/human.dm

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,6 @@
913913
return (ishuman(target) && !(target.mobility_flags & MOBILITY_STAND))
914914

915915
/mob/living/carbon/human/proc/fireman_carry(mob/living/carbon/target)
916-
var/carrydelay = 50 //if you have latex you are faster at grabbing
917916
var/skills_space = null // Changes depending on glove type
918917

919918
var/nanochips = FALSE
@@ -927,15 +926,13 @@
927926
else if(HAS_TRAIT(src, TRAIT_QUICK_CARRY))
928927
effective_skill += EXP_LOW
929928

929+
var/carrydelay = (25 / (5 + effective_skill)) SECONDS //if you have latex you are faster at grabbing
930930
switch(effective_skill)
931931
if(EXP_MASTER to INFINITY)
932-
carrydelay = 25
933932
skills_space = "masterfully"
934933
if(EXP_MID to EXP_MASTER)
935-
carrydelay = 30
936934
skills_space = "expertly"
937935
if(EXP_LOW to EXP_MID)
938-
carrydelay = 40
939936
skills_space = "quickly"
940937

941938
if(can_be_firemanned(target) && !incapacitated(FALSE, TRUE))

0 commit comments

Comments
 (0)