mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-11 07:58:57 +01:00
0c08e73820
The education age restriction now applies to tajara and unathi as well. The max skill level was supposed to be unlocked in educated skills, but was being accidentally locked to only the skill level the education gave. This meant someone uneducated could sometimes get even higher skill than an educated person, by spending skill points. The three combat skill ranks were reduced to trained level as their max. It was not possible for players to get higher before, and 3 was already the baseline. If a professional is ever implemented for antags or similar, it can be set back again then. Doctor of Pharmacy was reduced to only need 25 years old, due to both the description and that the pharmacist job has that age requirement too. fixes https://github.com/Aurorastation/Aurora.3/issues/22376 fixes https://github.com/Aurorastation/Aurora.3/issues/22286 fixes https://github.com/Aurorastation/Aurora.3/issues/22232 kinda. It was already fixed, but more fixing on restrictions also reported on it. fixes https://github.com/Aurorastation/Aurora.3/issues/22610
84 lines
3.8 KiB
Plaintext
84 lines
3.8 KiB
Plaintext
/singleton/education/forensics_degree
|
|
name = "Forensics Science Degree"
|
|
description = "You are 25 years of age or older, with a degree in Forensics Science. You specialize in the medical procedures required to understand why someone died. " \
|
|
+ "While not necessarily a medical degree, there's not much difference in suturing a body whether or not its approaching room temperature."
|
|
jobs = list("Investigator")
|
|
minimum_character_age = list(
|
|
SPECIES_HUMAN = 25,
|
|
SPECIES_TAJARA = 25,
|
|
SPECIES_TAJARA_MSAI = 25,
|
|
SPECIES_TAJARA_ZHAN = 25,
|
|
SPECIES_UNATHI = 25,
|
|
SPECIES_SKRELL = 60,
|
|
SPECIES_SKRELL_AXIORI = 60
|
|
)
|
|
skills = list(
|
|
/singleton/skill/surgery = SKILL_LEVEL_TRAINED,
|
|
/singleton/skill/anatomy = SKILL_LEVEL_FAMILIAR,
|
|
/singleton/skill/forensics = SKILL_LEVEL_PROFESSIONAL,
|
|
/singleton/skill/firearms = SKILL_LEVEL_TRAINED
|
|
)
|
|
|
|
/singleton/education/military_basic
|
|
name = "Military Training"
|
|
description = "You have finished at least one full contract of military service. Alternatively, this could be equivalent experience from mercenary work (legal or otherwise), \
|
|
or or simply surviving for long in a grim environment where self-discipline matters as much as skill."
|
|
minimum_character_age = list(
|
|
SPECIES_HUMAN = 18,
|
|
SPECIES_TAJARA = 18,
|
|
SPECIES_TAJARA_MSAI = 18,
|
|
SPECIES_TAJARA_ZHAN = 18,
|
|
SPECIES_UNATHI = 18,
|
|
SPECIES_SKRELL = 60,
|
|
SPECIES_SKRELL_AXIORI = 60
|
|
)
|
|
skills = list(
|
|
/singleton/skill/unarmed_combat = SKILL_LEVEL_TRAINED,
|
|
/singleton/skill/armed_combat = SKILL_LEVEL_TRAINED,
|
|
/singleton/skill/firearms = SKILL_LEVEL_TRAINED
|
|
)
|
|
|
|
/singleton/education/military_corpsman
|
|
name = "Corpsman Training"
|
|
description = "After completing basic military training (or having lived a life that taught you comparable lessons), you received advanced individual training in battlefield medicine. " \
|
|
+ "Your combat skills are not as sharp as others, but you made up for it by knowing how to keep your comrades in arms from bleeding out on the battlefield. " \
|
|
+ "A character with this training is NOT legally considered a medical doctor. You're on the hook for manslaughter if you attempt and fail to save them yourself instead of taking them to a real doctor."
|
|
minimum_character_age = list(
|
|
SPECIES_HUMAN = 18,
|
|
SPECIES_TAJARA = 18,
|
|
SPECIES_TAJARA_MSAI = 18,
|
|
SPECIES_TAJARA_ZHAN = 18,
|
|
SPECIES_UNATHI = 18,
|
|
SPECIES_SKRELL = 60,
|
|
SPECIES_SKRELL_AXIORI = 60
|
|
)
|
|
skills = list(
|
|
/* Significantly worse combat skills than other security educations, though not so bad they'll footgun themselves.
|
|
Alternatively, this is a plausible though less specialized alternative for paramedic training, as is common in real life. */
|
|
/singleton/skill/armed_combat = SKILL_LEVEL_FAMILIAR,
|
|
/singleton/skill/firearms = SKILL_LEVEL_TRAINED,
|
|
/singleton/skill/surgery = SKILL_LEVEL_FAMILIAR, /* Only enough to repair an artery. */
|
|
/singleton/skill/medicine = SKILL_LEVEL_FAMILIAR
|
|
)
|
|
|
|
/singleton/education/police_academy
|
|
name = "Police Academy Graduate"
|
|
description = "You are a police academy graduate, or else you have certified through (or survived) a local institution of comparable sort. \
|
|
Your combat skills are not as stringent as actual military service, though this is made up for with more generalized training suitable for a first-responder."
|
|
minimum_character_age = list(
|
|
SPECIES_HUMAN = 18,
|
|
SPECIES_TAJARA = 18,
|
|
SPECIES_TAJARA_MSAI = 18,
|
|
SPECIES_TAJARA_ZHAN = 18,
|
|
SPECIES_UNATHI = 18,
|
|
SPECIES_SKRELL = 60,
|
|
SPECIES_SKRELL_AXIORI = 60
|
|
)
|
|
skills = list(
|
|
/singleton/skill/unarmed_combat = SKILL_LEVEL_FAMILIAR,
|
|
/singleton/skill/firearms = SKILL_LEVEL_TRAINED,
|
|
/singleton/skill/forensics = SKILL_LEVEL_FAMILIAR, /* Very basic crime investigation skills. */
|
|
/singleton/skill/medicine = SKILL_LEVEL_FAMILIAR /* Police are also trained in basic first aid. */
|
|
)
|
|
|