mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-14 10:53:42 +00:00
* start * done * done * gold wheelchair * mats * icons * Update code/datums/achievements/hardcore_random.dm Co-Authored-By: ATH1909 <42606352+ATH1909@users.noreply.github.com> * fixes * Update code/controllers/subsystem/processing/quirks.dm Co-Authored-By: spookydonut <github@spooksoftware.com> * proc * Update code/__HELPERS/roundend.dm Co-Authored-By: spookydonut <github@spooksoftware.com> * Update code/__HELPERS/roundend.dm Co-Authored-By: spookydonut <github@spooksoftware.com> * playtime stuff * Update code/__HELPERS/roundend.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * Update code/__HELPERS/roundend.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * Update code/__HELPERS/roundend.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * Update code/datums/traits/_quirk.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * Update code/datums/traits/negative.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * Update code/modules/client/preferences.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * Update code/modules/client/preferences.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * Update code/modules/client/preferences.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * fixes * done * fix * removes u * Update code/modules/client/preferences_savefile.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * overlay * Update code/modules/mob/dead/new_player/preferences_setup.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * Update code/modules/mob/dead/new_player/preferences_setup.dm Co-Authored-By: Rohesie <rohesie@gmail.com> * less braindead code * woops * Update code/__HELPERS/roundend.dm Co-authored-by: Rohesie <rohesie@gmail.com> * Update code/__HELPERS/roundend.dm Co-authored-by: Rohesie <rohesie@gmail.com> * Update code/controllers/subsystem/ticker.dm Co-authored-by: Rohesie <rohesie@gmail.com> * done Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> Co-authored-by: spookydonut <github@spooksoftware.com> Co-authored-by: Rohesie <rohesie@gmail.com>
61 lines
2.6 KiB
Plaintext
61 lines
2.6 KiB
Plaintext
#define EXP_ASSIGN_WAYFINDER 1200
|
|
//Used to process and handle roundstart quirks
|
|
// - Quirk strings are used for faster checking in code
|
|
// - Quirk datums are stored and hold different effects, as well as being a vector for applying trait string
|
|
PROCESSING_SUBSYSTEM_DEF(quirks)
|
|
name = "Quirks"
|
|
init_order = INIT_ORDER_QUIRKS
|
|
flags = SS_BACKGROUND
|
|
wait = 10
|
|
runlevels = RUNLEVEL_GAME
|
|
|
|
var/list/quirks = list() //Assoc. list of all roundstart quirk datum types; "name" = /path/
|
|
var/list/quirk_points = list() //Assoc. list of quirk names and their "point cost"; positive numbers are good traits, and negative ones are bad
|
|
var/list/quirk_objects = list() //A list of all quirk objects in the game, since some may process
|
|
var/list/quirk_blacklist = list() //A list of quirks that can not be used with each other. Format: list(quirk1,quirk2),list(quirk3,quirk4)
|
|
///An assoc list of quirks that can be obtained as a hardcore character, and their hardcore value.
|
|
var/list/hardcore_quirks = list()
|
|
|
|
/datum/controller/subsystem/processing/quirks/Initialize(timeofday)
|
|
if(!quirks.len)
|
|
SetupQuirks()
|
|
|
|
quirk_blacklist = list(list("Blind","Nearsighted"),list("Jolly","Depression","Apathetic","Hypersensitive"),list("Ageusia","Vegetarian","Deviant Tastes"),list("Ananas Affinity","Ananas Aversion"),list("Alcohol Tolerance","Light Drinker"),list("Clown Fan","Mime Fan"))
|
|
return ..()
|
|
|
|
/datum/controller/subsystem/processing/quirks/proc/SetupQuirks()
|
|
// Sort by Positive, Negative, Neutral; and then by name
|
|
var/list/quirk_list = sortList(subtypesof(/datum/quirk), /proc/cmp_quirk_asc)
|
|
|
|
for(var/V in quirk_list)
|
|
var/datum/quirk/T = V
|
|
quirks[initial(T.name)] = T
|
|
quirk_points[initial(T.name)] = initial(T.value)
|
|
|
|
var/hardcore_value = initial(T.hardcore_value)
|
|
|
|
if(!hardcore_value)
|
|
continue
|
|
hardcore_quirks[T] += hardcore_value
|
|
|
|
/datum/controller/subsystem/processing/quirks/proc/AssignQuirks(mob/living/user, client/cli, spawn_effects)
|
|
var/badquirk = FALSE
|
|
for(var/V in cli.prefs.all_quirks)
|
|
var/datum/quirk/Q = quirks[V]
|
|
if(Q)
|
|
user.add_quirk(Q, spawn_effects)
|
|
else
|
|
stack_trace("Invalid quirk \"[V]\" in client [cli.ckey] preferences")
|
|
cli.prefs.all_quirks -= V
|
|
badquirk = TRUE
|
|
if(badquirk)
|
|
cli.prefs.save_character()
|
|
|
|
if(ishuman(user))
|
|
var/mob/living/carbon/human/human = user
|
|
human.hardcore_survival_score = cli.prefs.hardcore_survival_score //Only do this if we actually asign quirks, to prevent sillicons etc from getting the points.
|
|
|
|
// Assign wayfinding pinpointer granting quirk if they're new
|
|
if(cli.get_exp_living(TRUE) < EXP_ASSIGN_WAYFINDER && !user.has_quirk(/datum/quirk/needswayfinder))
|
|
user.add_quirk(/datum/quirk/needswayfinder, TRUE)
|