mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 19:17:50 +01:00
6674928e38
* Adds the bell. No map changes. Co-authored-by: Wallemations <https://github.com/Wallemations> * Update code/modules/paperwork/desk_bell.dm Co-authored-by: Sirryan2002 <80364400+Sirryan2002@users.noreply.github.com> * Update code/game/objects/items/stacks/sheets/sheet_types.dm Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> * Do a few things Addresses reviews, converts the bell to /obj/item by copping paperbin code, add to autolathe * Add to maps * Update code/modules/paperwork/desk_bell.dm Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> * Update code/modules/paperwork/desk_bell.dm Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> * Update code/modules/paperwork/desk_bell.dm Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> * Update code/modules/paperwork/desk_bell.dm Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> * Update code/modules/paperwork/desk_bell.dm Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> * Update code/modules/paperwork/desk_bell.dm Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> * Update code/modules/research/designs/autolathe_designs.dm Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> Co-authored-by: Sirryan2002 <80364400+Sirryan2002@users.noreply.github.com> Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com>
92 lines
3.1 KiB
Plaintext
92 lines
3.1 KiB
Plaintext
// A receptionist's bell
|
|
|
|
/obj/item/desk_bell
|
|
name = "desk bell"
|
|
desc = "The cornerstone of any customer service job. You feel an unending urge to ring it."
|
|
icon = 'icons/obj/bureaucracy.dmi'
|
|
icon_state = "desk_bell"
|
|
/// The amount of times this bell has been rang, used to check the chance it breaks
|
|
var/times_rang = 0
|
|
/// Is this bell broken?
|
|
var/broken_ringer = FALSE
|
|
/// Holds the time that the bell can next be rang.
|
|
var/ring_cooldown = 0
|
|
/// The length of the cooldown. Setting it to 0 will skip all cooldowns alltogether.
|
|
var/ring_cooldown_length = 0.5 SECONDS // This is here to protect against tinnitus.
|
|
/// The sound the bell makes
|
|
var/ring_sound = 'sound/machines/bell.ogg'
|
|
|
|
/obj/item/desk_bell/attack_hand(mob/living/user)
|
|
if(ring_cooldown > world.time)
|
|
return TRUE
|
|
if(!ring_bell(user))
|
|
to_chat(user, "<span class='notice'>[src] is silent. Some idiot broke it.</span>")
|
|
ring_cooldown = world.time + ring_cooldown_length
|
|
return TRUE
|
|
|
|
/obj/item/desk_bell/MouseDrop(atom/over_object)
|
|
var/mob/M = usr
|
|
if(HAS_TRAIT(M, TRAIT_HANDS_BLOCKED) || !Adjacent(M))
|
|
return
|
|
if(!ishuman(M))
|
|
return
|
|
|
|
if(over_object == M)
|
|
if(!remove_item_from_storage(M))
|
|
M.unEquip(src)
|
|
M.put_in_hands(src)
|
|
|
|
else if(istype(over_object, /obj/screen))
|
|
switch(over_object.name)
|
|
if("r_hand")
|
|
if(!remove_item_from_storage(M))
|
|
M.unEquip(src)
|
|
M.put_in_r_hand(src)
|
|
if("l_hand")
|
|
if(!remove_item_from_storage(M))
|
|
M.unEquip(src)
|
|
M.put_in_l_hand(src)
|
|
|
|
add_fingerprint(M)
|
|
|
|
// Fix the clapper
|
|
/obj/item/desk_bell/screwdriver_act(mob/living/user, obj/item/tool)
|
|
. = TRUE
|
|
if(broken_ringer)
|
|
to_chat(user, "<span class='notice'>You begin repairing the bell...</span>")
|
|
tool.play_tool_sound(src)
|
|
if(tool.use_tool(src, user, 5 SECONDS))
|
|
user.visible_message("<span class='notice'>[user] repairs the bell.</span>", "<span class='notice'>You repair the bell.</span>")
|
|
playsound(user, 'sound/items/change_drill.ogg', 50, vary = TRUE)
|
|
broken_ringer = FALSE
|
|
times_rang = 0
|
|
return TRUE
|
|
return FALSE
|
|
|
|
// Deconstruct
|
|
/obj/item/desk_bell/wrench_act(mob/living/user, obj/item/tool)
|
|
to_chat(user, "<span class='notice'>You begin taking apart the bell...</span>")
|
|
if(tool.use_tool(src, user, 5 SECONDS))
|
|
to_chat(user, "<span class='notice'>You disassemble the bell...</span>")
|
|
playsound(user, 'sound/items/deconstruct.ogg', 50, vary = TRUE)
|
|
new /obj/item/stack/sheet/metal(drop_location(), 2)
|
|
qdel(src)
|
|
return TRUE
|
|
|
|
/// Check if the clapper breaks, and if it does, break it
|
|
/obj/item/desk_bell/proc/check_clapper(mob/living/user)
|
|
if(prob(times_rang / 50) && ring_cooldown_length)
|
|
to_chat(user, "<span class='notice'>You hear [src]'s clapper fall off of its hinge. Nice job, you broke it.</span>")
|
|
broken_ringer = TRUE
|
|
|
|
/// Ring the bell
|
|
/obj/item/desk_bell/proc/ring_bell(mob/living/user)
|
|
if(broken_ringer)
|
|
return FALSE
|
|
check_clapper(user)
|
|
// The lack of varying is intentional. The only variance occurs on the strike the bell breaks.
|
|
playsound(src, ring_sound, 70, vary = broken_ringer, extrarange = SHORT_RANGE_SOUND_EXTRARANGE)
|
|
flick("desk_bell_ring", src)
|
|
times_rang++
|
|
return TRUE
|