This repository was archived by the owner on May 22, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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,
Original file line number Diff line number Diff line change 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
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 ))
You can’t perform that action at this time.
0 commit comments