This repository was archived by the owner on May 22, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2424#define EXP_GENIUS 5
2525
2626// / Experience required to increase your skills by one level. Increases exponentially the higher your level already is.
27- #define EXPERIENCE_PER_LEVEL 200
27+ #define EXPERIENCE_PER_LEVEL 500
2828
2929#define SKILL_TO_ACTION_SPEED (skill_level ) ((12 - skill_level) / 10 )
Original file line number Diff line number Diff line change 2424 SKILL_SCIENCE = EXP_LOW ,
2525 SKILL_FITNESS = EXP_NONE ,
2626 )
27- skill_points = 3 // lots of different skills required
27+ skill_points = 4 // lots of different skills required
2828
2929 outfit = / datum / outfit/ job/ ce
3030
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_LOW ,
39+ SKILL_SCIENCE = EXP_MID ,
4040 SKILL_FITNESS = EXP_LOW ,
4141 )
4242 skill_points = 4
Original file line number Diff line number Diff line change 4444 SKILL_SCIENCE = EXP_HIGH ,
4545 SKILL_FITNESS = EXP_NONE ,
4646 )
47- skill_points = 2
47+ skill_points = 3
4848
4949 departments_list = list (
5050 / datum / job_department/ science,
Original file line number Diff line number Diff line change 926926 else if (HAS_TRAIT (src , TRAIT_QUICK_CARRY ))
927927 effective_skill += EXP_LOW
928928
929- var /carrydelay = (25 / (5 + effective_skill)) SECONDS // if you have latex you are faster at grabbing
929+ var /carrydelay = (25 / (5 + effective_skill)) SECONDS
930930 switch (effective_skill)
931931 if (EXP_MASTER to INFINITY )
932932 skills_space = " masterfully"
Original file line number Diff line number Diff line change 2727 protection += cover. armor. getRating(armor_flag) * 0.5
2828 protection += physiology. armor. getRating(armor_flag)
2929 if (armor_flag == MELEE )
30- protection += get_skill(SKILL_FITNESS )
30+ protection = 100 - (( 100 - protection) * ( 20 - get_skill(SKILL_FITNESS )) / 20 ) // 16% multiplicative armor at EXP_MASTER
3131 return protection
3232
3333// /Get all the clothing on a specific body part
You can’t perform that action at this time.
0 commit comments