mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 23:27:34 +01:00
Expanded Interaction Preferences (#27043)
* updated erp prefs * Update examine_tgui.dm * didn't mean to add * Update examine_tgui.dm
This commit is contained in:
@@ -134,10 +134,30 @@
|
||||
savefile_key = "erp_status_pref"
|
||||
|
||||
/datum/preference/choiced/erp_status/init_possible_values()
|
||||
return list("Yes - Switch", "Yes - Sub", "Yes - Dom", "Check OOC", "Ask", "No", "Yes")
|
||||
return list(
|
||||
"Top - Dom",
|
||||
"Top - Switch",
|
||||
"Top - Sub",
|
||||
"Verse-Top - Dom",
|
||||
"Verse-Top - Switch",
|
||||
"Verse-Top - Sub",
|
||||
"Verse - Dom",
|
||||
"Verse - Switch",
|
||||
"Verse - Sub",
|
||||
"Verse-Bottom - Dom",
|
||||
"Verse-Bottom - Switch",
|
||||
"Verse-Bottom - Sub",
|
||||
"Bottom - Dom",
|
||||
"Bottom - Switch",
|
||||
"Bottom - Sub",
|
||||
"Check OOC Notes",
|
||||
"Ask (L)OOC",
|
||||
"No",
|
||||
"Yes",
|
||||
)
|
||||
|
||||
/datum/preference/choiced/erp_status/create_default_value()
|
||||
return "Ask"
|
||||
return "Ask (L)OOC"
|
||||
|
||||
/datum/preference/choiced/erp_status/is_accessible(datum/preferences/preferences)
|
||||
if (!..(preferences))
|
||||
@@ -164,10 +184,10 @@
|
||||
savefile_key = "erp_status_pref_nc"
|
||||
|
||||
/datum/preference/choiced/erp_status_nc/init_possible_values()
|
||||
return list("Yes - Switch", "Yes - Sub", "Yes - Dom", "Check OOC", "Ask", "No", "Yes")
|
||||
return list("Yes - Switch", "Yes - Dom", "Yes - Sub", "Yes", "Ask (L)OOC", "Check OOC Notes", "No")
|
||||
|
||||
/datum/preference/choiced/erp_status_nc/create_default_value()
|
||||
return "Ask"
|
||||
return "No"
|
||||
|
||||
/datum/preference/choiced/erp_status_nc/is_accessible(datum/preferences/preferences)
|
||||
if (!..(preferences))
|
||||
@@ -194,10 +214,10 @@
|
||||
savefile_key = "erp_status_pref_v"
|
||||
|
||||
/datum/preference/choiced/erp_status_v/init_possible_values()
|
||||
return list("Yes - Switch", "Yes - Prey", "Yes - Pred", "Check OOC", "Ask", "No", "Yes")
|
||||
return list("Yes - Switch", "Yes - Prey", "Yes - Pred", "Check OOC Notes", "Ask (L)OOC", "No", "Yes")
|
||||
|
||||
/datum/preference/choiced/erp_status_v/create_default_value()
|
||||
return "Ask"
|
||||
return "No"
|
||||
|
||||
/datum/preference/choiced/erp_status_v/is_accessible(datum/preferences/preferences)
|
||||
if (!..(preferences))
|
||||
|
||||
Reference in New Issue
Block a user