mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-30 08:33:47 +01:00
reworks game preferences (characters v2 staging) (#6310)
Co-authored-by: silicons <no@you.cat> Co-authored-by: LordME <58342752+TheLordME@users.noreply.github.com>
This commit is contained in:
co-authored by
silicons
LordME
parent
9f1b911556
commit
39bc14bb4a
@@ -27,7 +27,7 @@
|
||||
|
||||
/obj/item/paper/carbon/verb/removecopy()
|
||||
set name = "Remove carbon-copy"
|
||||
set category = "Object"
|
||||
set category = VERB_CATEGORY_OBJECT
|
||||
set src in usr
|
||||
|
||||
if (copied == 0)
|
||||
|
||||
@@ -113,7 +113,7 @@
|
||||
|
||||
/obj/item/paper/verb/rename()
|
||||
set name = "Rename paper"
|
||||
set category = "Object"
|
||||
set category = VERB_CATEGORY_OBJECT
|
||||
set src in usr
|
||||
|
||||
if((MUTATION_CLUMSY in usr.mutations) && prob(50))
|
||||
|
||||
@@ -185,7 +185,7 @@
|
||||
|
||||
/obj/item/paper_bundle/verb/rename()
|
||||
set name = "Rename bundle"
|
||||
set category = "Object"
|
||||
set category = VERB_CATEGORY_OBJECT
|
||||
set src in usr
|
||||
|
||||
var/n_name = sanitizeSafe(input(usr, "What would you like to label the bundle?", "Bundle Labelling", null) as text, MAX_NAME_LEN)
|
||||
@@ -197,7 +197,7 @@
|
||||
|
||||
/obj/item/paper_bundle/verb/remove_all()
|
||||
set name = "Loose bundle"
|
||||
set category = "Object"
|
||||
set category = VERB_CATEGORY_OBJECT
|
||||
set src in usr
|
||||
|
||||
to_chat(usr, "<span class='notice'>You loosen the bundle.</span>")
|
||||
|
||||
@@ -80,7 +80,7 @@
|
||||
|
||||
/obj/machinery/papershredder/verb/empty_contents()
|
||||
set name = "Empty bin"
|
||||
set category = "Object"
|
||||
set category = VERB_CATEGORY_OBJECT
|
||||
set src in range(1)
|
||||
|
||||
if(!CHECK_MOBILITY(usr, MOBILITY_CAN_USE))
|
||||
|
||||
@@ -286,7 +286,7 @@
|
||||
|
||||
/obj/item/pen/chameleon/verb/set_colour()
|
||||
set name = "Change Pen Colour"
|
||||
set category = "Object"
|
||||
set category = VERB_CATEGORY_OBJECT
|
||||
|
||||
var/list/possible_colours = list ("Yellow", "Green", "Pink", "Blue", "Orange", "Cyan", "Red", "Invisible", "Black")
|
||||
var/selected_type = input("Pick new colour.", "Pen Colour", null, null) as null|anything in possible_colours
|
||||
|
||||
Reference in New Issue
Block a user