mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-12 16:37:19 +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
100 lines
3.7 KiB
Plaintext
100 lines
3.7 KiB
Plaintext
/singleton/education/research_and_development
|
|
name = "Research & Development Degree"
|
|
description = "You are at least 30 years of age, with a PhD in an applicable field for Research and Development. This may range from a Firearms Engineering degree \
|
|
to a Bluespace Engineering degree or even Aerospace Engineering. Space is the limit for your research."
|
|
jobs = list("Scientist")
|
|
minimum_character_age = list(
|
|
SPECIES_HUMAN = 30,
|
|
SPECIES_TAJARA = 30,
|
|
SPECIES_TAJARA_MSAI = 30,
|
|
SPECIES_TAJARA_ZHAN = 30,
|
|
SPECIES_UNATHI = 30,
|
|
SPECIES_SKRELL = 60,
|
|
SPECIES_SKRELL_AXIORI = 60
|
|
)
|
|
skills = list(
|
|
/singleton/skill/research = SKILL_LEVEL_PROFESSIONAL
|
|
)
|
|
|
|
/singleton/education/robotics_masters
|
|
name = "Robotics Master's"
|
|
description = "You are at least 25 years of age, with a Master's in Robotics. Your specialization is in building and repairing IPCs and other smaller robots, though \
|
|
you are also capable of building exoskeletons and mechs. You're also proficient with some fundamental engineering skills, though you prefer the \
|
|
theoretical aspect and robots in general."
|
|
jobs = list("Roboticist")
|
|
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/research = SKILL_LEVEL_FAMILIAR,
|
|
/singleton/skill/robotics = SKILL_LEVEL_PROFESSIONAL,
|
|
/singleton/skill/electrical_engineering = SKILL_LEVEL_FAMILIAR,
|
|
/singleton/skill/mechanical_engineering = SKILL_LEVEL_FAMILIAR,
|
|
)
|
|
|
|
/singleton/education/mechatronics_masters
|
|
name = "Mechatronics Master's"
|
|
description = "You are at least 25 years of age, with a Master's in Mechatronics. Your specialization is with building large human-sized exoskeletons and mechs, though \
|
|
you've also learnt how to repair IPCs and simpler robots as well. You're more proficient with the mechanical aspects of engineering as well."
|
|
jobs = list("Roboticist")
|
|
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/research = SKILL_LEVEL_FAMILIAR,
|
|
/singleton/skill/robotics = SKILL_LEVEL_TRAINED,
|
|
/singleton/skill/electrical_engineering = SKILL_LEVEL_FAMILIAR,
|
|
/singleton/skill/mechanical_engineering = SKILL_LEVEL_PROFESSIONAL
|
|
)
|
|
|
|
/singleton/education/xenobotany_degree
|
|
name = "Xenobotany Degree"
|
|
description = "You are at least 30 years of age, with a PhD in Xenobotany. Your specialization is with discovering, sequencing, and creating alien flora... though \
|
|
you can also grow some potatoes in your spare time."
|
|
jobs = list("Xenobotanist")
|
|
minimum_character_age = list(
|
|
SPECIES_HUMAN = 30,
|
|
SPECIES_TAJARA = 30,
|
|
SPECIES_TAJARA_MSAI = 30,
|
|
SPECIES_TAJARA_ZHAN = 30,
|
|
SPECIES_UNATHI = 30,
|
|
SPECIES_SKRELL = 60,
|
|
SPECIES_SKRELL_AXIORI = 60
|
|
)
|
|
skills = list(
|
|
/singleton/skill/research = SKILL_LEVEL_FAMILIAR,
|
|
/singleton/skill/gardening = SKILL_LEVEL_PROFESSIONAL,
|
|
/singleton/skill/xenobotany = SKILL_LEVEL_PROFESSIONAL
|
|
)
|
|
|
|
|
|
/singleton/education/xenobiology_degree
|
|
name = "Xenobiology Degree"
|
|
description = "You are at least 30 years of age, with a PhD in Xenobiology. Your specialization is with discovering and cataloguing alien animals."
|
|
jobs = list("Xenobiologist")
|
|
minimum_character_age = list(
|
|
SPECIES_HUMAN = 30,
|
|
SPECIES_TAJARA = 30,
|
|
SPECIES_TAJARA_MSAI = 30,
|
|
SPECIES_TAJARA_ZHAN = 30,
|
|
SPECIES_UNATHI = 30,
|
|
SPECIES_SKRELL = 60,
|
|
SPECIES_SKRELL_AXIORI = 60
|
|
)
|
|
skills = list(
|
|
/singleton/skill/research = SKILL_LEVEL_FAMILIAR,
|
|
/singleton/skill/xenobiology = SKILL_LEVEL_PROFESSIONAL
|
|
)
|