mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-29 15:08:02 +01:00
The great verb retabbening.
Assigned categories to assorted verbs that lacked them. Commands tab is now more or less gone. Instead, things are in "IC" for things like say, whisper, me, that are inherent to you, "OOC" for things like OOC chat, and "Objects" for verbs originating from the world around you. I suppose for those non-admins in the audience, you now also get an "Admin" tab, because I stuffed adminhelp and adminwho in there. This change was only to verbs defined as verbs in the code, procs that are assigned to things as verbs are far more numerous and harder to isolate, but also mostly admin-related. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1234 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -21,6 +21,8 @@ AI MODULES
|
||||
origin_tech = "programming=3"
|
||||
|
||||
/obj/machinery/computer/aiupload/verb/AccessInternals()
|
||||
set category = "Object"
|
||||
set name = "Access Computer's Internals"
|
||||
set src in oview(1)
|
||||
if(get_dist(src, usr) > 1 || usr.restrained() || usr.lying || usr.stat || istype(usr, /mob/living/silicon))
|
||||
return
|
||||
|
||||
@@ -13,6 +13,8 @@ FINGERPRINT CARD
|
||||
// DATA CARDS
|
||||
|
||||
/obj/item/weapon/card/data/verb/label(t as text)
|
||||
set name = "Label Disk"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
|
||||
if (t)
|
||||
@@ -36,6 +38,7 @@ FINGERPRINT CARD
|
||||
|
||||
/obj/item/weapon/card/id/verb/read()
|
||||
set name = "Read ID Card"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
|
||||
usr << text("\icon[] []: The current assignment on the card is [].", src, src.name, src.assignment)
|
||||
@@ -69,7 +72,8 @@ FINGERPRINT CARD
|
||||
//PHOTO.loc = locate(0,0,0)
|
||||
|
||||
/obj/item/weapon/card/id/verb/removePhoto()
|
||||
set name = "Remove Photo"
|
||||
set name = "Remove Photo From ID"
|
||||
set category = "Object"
|
||||
|
||||
if(PHOTO)
|
||||
contents -= PHOTO
|
||||
|
||||
@@ -1170,6 +1170,8 @@ obj/item/weapon/gun/revolver/attackby(obj/item/weapon/ammo/a357/A as obj, mob/us
|
||||
return
|
||||
|
||||
/obj/item/weapon/gun/c96/verb/eject()
|
||||
set name = "Eject Clip"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
if (src.magazine)
|
||||
if (istype(src.magazine, /obj/item/weapon/ammo/a763m))
|
||||
@@ -1260,6 +1262,8 @@ obj/item/weapon/gun/revolver/attackby(obj/item/weapon/ammo/a357/A as obj, mob/us
|
||||
return
|
||||
|
||||
/obj/item/weapon/gun/p08/verb/eject()
|
||||
set name = "Eject Clip"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
if (src.magazine)
|
||||
if (istype(src.magazine, /obj/item/weapon/ammo/a9x19p))
|
||||
@@ -1350,6 +1354,8 @@ obj/item/weapon/gun/revolver/attackby(obj/item/weapon/ammo/a357/A as obj, mob/us
|
||||
return
|
||||
|
||||
/obj/item/weapon/gun/glock/verb/eject()
|
||||
set name = "Eject Clip"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
if (src.magazine)
|
||||
if (istype(src.magazine, /obj/item/weapon/ammo/a45))
|
||||
@@ -1441,6 +1447,8 @@ obj/item/weapon/gun/revolver/attackby(obj/item/weapon/ammo/a357/A as obj, mob/us
|
||||
return
|
||||
|
||||
/obj/item/weapon/gun/m1911/verb/eject()
|
||||
set name = "Eject Clip"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
if (src.magazine)
|
||||
if (istype(src.magazine, /obj/item/weapon/ammo/a45))
|
||||
@@ -1520,6 +1528,8 @@ obj/item/weapon/gun/revolver/attackby(obj/item/weapon/ammo/a357/A as obj, mob/us
|
||||
return
|
||||
|
||||
/obj/item/weapon/gun/carbine/verb/eject()
|
||||
set name = "Eject Clip"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
if (src.magazine)
|
||||
if (istype(src.magazine, /obj/item/weapon/ammo/assaultmag))
|
||||
@@ -1602,6 +1612,8 @@ obj/item/weapon/gun/revolver/attackby(obj/item/weapon/ammo/a357/A as obj, mob/us
|
||||
return
|
||||
|
||||
/obj/item/weapon/gun/ak331/verb/eject()
|
||||
set name = "Eject Clip"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
if (src.magazine)
|
||||
if (istype(src.magazine, /obj/item/weapon/ammo/assaultmag))
|
||||
|
||||
Reference in New Issue
Block a user