Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjusts playtime requirements #1500

Merged
merged 2 commits into from
Jul 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/botanist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
name: job-name-botanist
description: job-description-botanist
playTimeTracker: JobBotanist
requirements:
- !type:OverallPlaytimeRequirement # DeltaV
time: 3600 # 1 hr
startingGear: BotanistGear
icon: "JobIconBotanist"
supervisors: job-supervisors-hop
Expand Down
3 changes: 3 additions & 0 deletions Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
name: job-name-janitor
description: job-description-janitor
playTimeTracker: JobJanitor
requirements:
- !type:OverallPlaytimeRequirement # DeltaV
time: 1800 # 30 mins
startingGear: JanitorGear
icon: "JobIconJanitor"
supervisors: job-supervisors-hop
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
playTimeTracker: JobServiceWorker
requirements:
- !type:OverallPlaytimeRequirement
time: 7200 # DeltaV - 2 hours
time: 1800 # DeltaV - 30 mins
startingGear: ServiceWorkerGear
icon: "JobIconServiceWorker"
supervisors: job-supervisors-service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
playTimeTracker: JobTechnicalAssistant
antagAdvantage: 3 # DeltaV - Reduced TC: External Access + Engineering
requirements:
- !type:OverallPlaytimeRequirement # DeltaV - to prevent griefers from taking the role.
time: 14400 # 4 hours
- !type:OverallPlaytimeRequirement # DeltaV
time: 7200 # 2 hours
# - !type:DepartmentTimeRequirement # DeltaV - Removes time limit
# department: Engineering
# time: 54000 #15 hrs
Expand Down
2 changes: 2 additions & 0 deletions Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
# department: Medical
# time: 54000 # 15 hrs
# inverted: true # stop playing intern if you're good at med!
- !type:OverallPlaytimeRequirement # DeltaV
time: 3600 # 1 hr
startingGear: MedicalInternGear
icon: "JobIconMedicalIntern"
supervisors: job-supervisors-medicine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
# department: Science
# time: 54000 #15 hrs
# inverted: true # stop playing intern if you're good at science!
- !type:OverallPlaytimeRequirement # DeltaV
time: 3600 # 1 hr
startingGear: ResearchAssistantGear
icon: "JobIconResearchAssistant"
supervisors: job-supervisors-science
Expand Down
Loading