mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 03:27:05 +01:00
Removed files that were 0 bytes in size.
Made sure every verb now has a name which starts with a capital letter and makes sense, because OCD. Changed the categories of verbs a lot, now they are in much more sensible tabs. Added a couple of admin verbs: - Right click monkeyize - Call Shuttle - Recall Shuttle Removed some goon verbs. Gave "Coder" admin group a little more admin verbs: - Monkeyize, Cultistize, Abominationize, Call Shuttle, Recall Shuttle, Make Sound Added mobs a "say_message" variable. Now admin-created mobs can "scree", "squeak" etc. instead of just "chimper" or "hiss". git-svn-id: http://tgstation13.googlecode.com/svn/trunk@138 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -138,7 +138,7 @@
|
||||
|
||||
verb/follow()
|
||||
set src in view()
|
||||
set name = "follow me"
|
||||
set name = "Follow Me"
|
||||
if(!alive) return
|
||||
if(!isalien(usr))
|
||||
usr << text("\red <B>The alien ignores you.</B>")
|
||||
@@ -153,7 +153,7 @@
|
||||
|
||||
verb/stop()
|
||||
set src in view()
|
||||
set name = "stop following"
|
||||
set name = "Stop Following"
|
||||
if(!alive) return
|
||||
if(!isalien(usr))
|
||||
usr << text("\red <B>The alien ignores you.</B>")
|
||||
|
||||
@@ -59,6 +59,7 @@
|
||||
return
|
||||
|
||||
/obj/item/verb/move_to_top()
|
||||
set name = "Move To Top"
|
||||
set src in oview(1)
|
||||
|
||||
if(!istype(src.loc, /turf) || usr.stat || usr.restrained() )
|
||||
|
||||
@@ -35,6 +35,7 @@ FINGERPRINT CARD
|
||||
return
|
||||
|
||||
/obj/item/weapon/card/id/verb/read()
|
||||
set name = "Read ID Card"
|
||||
set src in usr
|
||||
|
||||
usr << text("\icon[] []: The current assignment on the card is [].", src, src.name, src.assignment)
|
||||
|
||||
@@ -215,6 +215,7 @@
|
||||
return
|
||||
|
||||
/obj/stool/chair/verb/rotate()
|
||||
set name = "Rotate Chair"
|
||||
set src in oview(1)
|
||||
|
||||
src.dir = turn(src.dir, 90)
|
||||
|
||||
@@ -271,6 +271,7 @@
|
||||
return
|
||||
|
||||
/obj/item/weapon/tank/jetpack/verb/toggle()
|
||||
set name = "Toggle Jetpack"
|
||||
src.on = !( src.on )
|
||||
src.icon_state = text("jetpack[]", src.on)
|
||||
if(src.on)
|
||||
|
||||
@@ -175,6 +175,7 @@
|
||||
|
||||
|
||||
/obj/window/verb/rotate()
|
||||
set name = "Rotate Window"
|
||||
set src in oview(1)
|
||||
|
||||
if (src.anchored)
|
||||
|
||||
Reference in New Issue
Block a user