mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 02:57:48 +01:00
Ports Abductee Objectives (#23655)
* Abductor Objectives Abductor Objectives * Update code/game/gamemodes/miniantags/abduction/abductee_objectives.dm Thanks Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Update code/game/gamemodes/miniantags/abduction/abductee_objectives.dm Shit Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * Update abductee_objectives.dm Changes the execution objective to not be assisted manslaughter * Update code/game/gamemodes/miniantags/abduction/abductee_objectives.dm Fixed Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/game/gamemodes/miniantags/abduction/abductee_objectives.dm Most of these are just taking them word for word as theyre a port but this would be clearer Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/game/gamemodes/miniantags/abduction/abductee_objectives.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/game/gamemodes/miniantags/abduction/abductee_objectives.dm The "he is" is more to hammer down the point of one person but this woks too. Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/game/gamemodes/miniantags/abduction/abductee_objectives.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update code/game/gamemodes/miniantags/abduction/abductee_objectives.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Update abductee_objectives.dm * Update abductee_objectives.dm * Update code/game/gamemodes/miniantags/abduction/abductee_objectives.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> * Update code/game/gamemodes/miniantags/abduction/abductee_objectives.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> --------- Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
This commit is contained in:
co-authored by
Contrabang
DGamerL
Luc
parent
37879c530b
commit
8eba366cdf
@@ -148,3 +148,68 @@
|
||||
|
||||
/datum/objective/abductee/sixthsense
|
||||
explanation_text = "You died back there and went to heaven... or is it hell? No one here seems to know they're dead. Convince them, and maybe you can escape this limbo."
|
||||
|
||||
/datum/objective/abductee/forbiddennumber
|
||||
explanation_text = "Ignore anything in a set number of"
|
||||
|
||||
/datum/objective/abductee/forbiddennumber/New()
|
||||
..()
|
||||
var/number = pick(list("two", "three", "four", "five", "six", "seven", "eight", "nine", "ten"))
|
||||
explanation_text +=" [number], they don't exist."
|
||||
|
||||
/datum/objective/abductee/buddy
|
||||
explanation_text = "Being alone and in large groups are both frightening. Try to be alone with only one other person whenever possible."
|
||||
|
||||
/datum/objective/abductee/finality
|
||||
explanation_text = "Death should be final and modern medicine disrupts the natural order. Don't allow anyone to be revived."
|
||||
|
||||
/datum/objective/abductee/mispronounced
|
||||
explanation_text = "No matter how they say it, other people keep mispronouncing your name. Be sure to correct them whenever possible."
|
||||
|
||||
/datum/objective/abductee/bald
|
||||
explanation_text = "There are alien parasites masquerading as people's hair. Save people from this invasion."
|
||||
|
||||
/datum/objective/abductee/one
|
||||
explanation_text = "There is only one other person in existence, they are just really good at pretending to be multiple people."
|
||||
|
||||
/datum/objective/abductee/outlaw
|
||||
explanation_text = "You have infiltrated this station as a space-renowned outlaw, commit as many minor crimes as possible while remaining unnoticed by security."
|
||||
|
||||
/datum/objective/abductee/rot
|
||||
explanation_text = "Your flesh is rotting from your body. Fight the inevitable, and replace your tainted limbs with entirely new ones."
|
||||
|
||||
/datum/objective/abductee/blind
|
||||
explanation_text = "You are blind. Perhaps a new pair of eyes can help."
|
||||
|
||||
/datum/objective/abductee/ill
|
||||
explanation_text = "The station is ill. Medicate them until they're cured."
|
||||
|
||||
/datum/objective/abductee/game
|
||||
explanation_text = "Convince the crew that we are in a game, without explicitly telling them we are in a game."
|
||||
|
||||
/datum/objective/abductee/instructor
|
||||
explanation_text = "You are a military instructor. You must make sure the crew is in top shape for the war against the syndicate!"
|
||||
|
||||
/datum/objective/abductee/actor
|
||||
explanation_text = "You are in an action movie. You must say as many cheesy one-liners as possible."
|
||||
|
||||
/datum/objective/abductee/writer
|
||||
explanation_text = "You are a writer. Convince the crew of your superb writing skills!"
|
||||
|
||||
/datum/objective/abductee/doomed
|
||||
explanation_text = "You know something bad is about to happen to this station. Convince the crew to get off of it while they still can!"
|
||||
|
||||
/datum/objective/abductee/proof
|
||||
explanation_text = "You think you were kidnapped by aliens! Ensure that"
|
||||
|
||||
/datum/objective/abductee/proof/New()
|
||||
..()
|
||||
var/list/jobs = SSjobs.occupations.Copy()
|
||||
for(var/datum/job/J in jobs)
|
||||
if(J.current_positions < 1)
|
||||
jobs -= J
|
||||
if(length(jobs))
|
||||
var/datum/job/target = pick(jobs)
|
||||
explanation_text += " a [target.title] is also experimented on by an Abductor so they believe you!"
|
||||
else
|
||||
explanation_text += " someone is also experimented on by an Abductor so they believe you!"
|
||||
|
||||
Reference in New Issue
Block a user