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:
silicons
2024-04-08 12:44:30 +02:00
committed by GitHub
co-authored by silicons LordME
parent 9f1b911556
commit 39bc14bb4a
427 changed files with 3981 additions and 2842 deletions
+1 -1
View File
@@ -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)
+1 -1
View File
@@ -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))
+2 -2
View File
@@ -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>")
+1 -1
View File
@@ -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))
+1 -1
View File
@@ -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