mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 03:51:49 +01:00
* Split up and rename `var/flags` * Various fixes * CL * Don't rename Phoron Guard phoron preset --------- Co-authored-by: Cody Brittain <cbrittain10@live.com>
24 lines
520 B
Plaintext
24 lines
520 B
Plaintext
/obj/item/device/binoculars
|
|
|
|
name = "binoculars"
|
|
desc = "A pair of binoculars."
|
|
icon_state = "binoculars"
|
|
|
|
obj_flags = OBJ_FLAG_CONDUCTABLE
|
|
force = 5.0
|
|
w_class = ITEMSIZE_SMALL
|
|
throwforce = 5.0
|
|
throw_range = 15
|
|
throw_speed = 3
|
|
|
|
var/tileoffset = 14
|
|
var/viewsize = 7
|
|
|
|
/obj/item/device/binoculars/attack_self(mob/user)
|
|
zoom(user,tileoffset,viewsize, show_zoom_message = FALSE)
|
|
|
|
/obj/item/device/binoculars/high_power
|
|
name = "high power binoculars"
|
|
desc = "A pair of high power binoculars."
|
|
tileoffset = 14*3
|