Files
Casper3667 0c08e73820 Fixes education age restriction and max skill level in educated skills (#22645)
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
2026-06-08 10:49:03 +00:00

107 lines
4.5 KiB
Plaintext

/singleton/education/mechanical_engineering
name = "Mechanical Engineering"
description = "You are at least 25 years of age, with either a Bachelor's degree in Mechanical Engineering, or otherwise have functionally equivalent working experience. \
You specialize in constructing structural systems, lathing, and the more manual pleasures of engineering, such as welding and wrenching."
jobs = list("Engineer")
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/mechanical_engineering = SKILL_LEVEL_PROFESSIONAL,
/singleton/skill/electrical_engineering = SKILL_LEVEL_TRAINED,
/singleton/skill/atmospherics_systems = SKILL_LEVEL_TRAINED,
/singleton/skill/reactor_systems = SKILL_LEVEL_TRAINED
)
/singleton/education/electrical_engineering
name = "Electrical Engineering Background"
description = "You are at least 25 years of age, with a Bachelor's degree in Electrical Engineering, or otherwise have functionally equivalent working experience. \
You specialize in variable-voltage cabling, grid management, electronic hardware, and other electrical systems."
jobs = list("Engineer")
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/mechanical_engineering = SKILL_LEVEL_TRAINED,
/singleton/skill/electrical_engineering = SKILL_LEVEL_PROFESSIONAL,
/singleton/skill/atmospherics_systems = SKILL_LEVEL_TRAINED,
/singleton/skill/reactor_systems = SKILL_LEVEL_TRAINED
)
/singleton/education/atmospherics_engineer
name = "Atmospherics Systems Background"
description = "You are at least 25 years of age, with a Bachelor's degree in Atmospherics Systems, or otherwise have functionally equivalent working experience. \
You specialize in everything to do with atmospherics systems, whether that's the delivery of gases, usage of atmospherics machines, or simply how to use a pipe wrench."
jobs = list("Atmospherics Technician")
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/mechanical_engineering = SKILL_LEVEL_TRAINED,
/singleton/skill/electrical_engineering = SKILL_LEVEL_TRAINED,
/singleton/skill/atmospherics_systems = SKILL_LEVEL_PROFESSIONAL,
/singleton/skill/reactor_systems = SKILL_LEVEL_TRAINED
)
/singleton/education/reactors_engineer
name = "Reactor Systems Background"
description = "You are at least 25 years of age, with a Bachelor's degree in Reactor Systems, or otherwise have functionally equivalent working experience. \
You specialize in everything to do with a reactor's systems, whether you are looking at a Supermatter crystal, a fusion reactor, or a combustion chamber."
jobs = list("Engineer")
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/mechanical_engineering = SKILL_LEVEL_TRAINED,
/singleton/skill/electrical_engineering = SKILL_LEVEL_TRAINED,
/singleton/skill/atmospherics_systems = SKILL_LEVEL_TRAINED,
/singleton/skill/reactor_systems = SKILL_LEVEL_PROFESSIONAL
)
/singleton/education/experienced_engineer
name = "Engineering Certification"
description = "You are at least 25 years of age. You may not have an Engineering degree or a specialized background, but you had enough fundamental experience for the Conglomerate to validate it instead \
of a degree. You do not have the same specialization as your fellow Engineers with a degree, making up for it by being a jack of all trades. \
You could probably fix a car, whereas they might not be able to."
jobs = list("Engineer")
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/mechanical_engineering = SKILL_LEVEL_TRAINED,
/singleton/skill/electrical_engineering = SKILL_LEVEL_TRAINED,
/singleton/skill/atmospherics_systems = SKILL_LEVEL_TRAINED,
/singleton/skill/reactor_systems = SKILL_LEVEL_TRAINED
)