mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-26 23:36:55 +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
28 lines
1.2 KiB
Plaintext
28 lines
1.2 KiB
Plaintext
/singleton/education/finance
|
|
name = "Finance Background"
|
|
description = "You are at least 21 years of age. You possibly graduated in a field related to finance, whether that is Business Management or something else. Otherwise, you likely found your knack in the ordinary course of life such that you have comparable expertise.\
|
|
You can count very well, and you have a statistician's eye - especially for credits."
|
|
minimum_character_age = list(
|
|
SPECIES_HUMAN = 21,
|
|
SPECIES_TAJARA = 21,
|
|
SPECIES_TAJARA_MSAI = 21,
|
|
SPECIES_TAJARA_ZHAN = 21,
|
|
SPECIES_UNATHI = 21,
|
|
SPECIES_SKRELL = 55,
|
|
SPECIES_SKRELL_AXIORI = 55
|
|
)
|
|
|
|
/singleton/education/arts
|
|
name = "Humanities Background"
|
|
description = "You are at least 21 years of age. You possibly graduated in a field related to the humanities, whether that is music, arts, linguistics, or a bachelor's in \
|
|
psychology. Otherwise, your life has provided ample opportunity for these pursuits such that you have comparable expertise. You are likely very well-read on foreign cultures and on the human mind."
|
|
minimum_character_age = list(
|
|
SPECIES_HUMAN = 21,
|
|
SPECIES_TAJARA = 21,
|
|
SPECIES_TAJARA_MSAI = 21,
|
|
SPECIES_TAJARA_ZHAN = 21,
|
|
SPECIES_UNATHI = 21,
|
|
SPECIES_SKRELL = 55,
|
|
SPECIES_SKRELL_AXIORI = 55
|
|
)
|