Files
2023-07-09 21:27:02 -03:00

50 lines
1.2 KiB
Plaintext

/obj/item/firing_pin/kaiju
name = "kaiju firing pin" //Basically same as outback, but i changed so you cannot remove it
desc = "You shouldn't have this."
icon_state = "firing_pin_explorer"
fail_message = "<span class='warning'>CANNOT FIRE WHILE ON STATION!</span>"
pin_removeable = FALSE
// This checks that the user isn't on the station Z-level.
/obj/item/firing_pin/kaiju/pin_auth(mob/living/user)
var/turf/station_check = get_turf(user)
if(!station_check||is_station_level(station_check.z))
return FALSE
return TRUE
/obj/item/firing_pin
pin_removeable = TRUE
/obj/item/firing_pin/magic
pin_removeable = FALSE
/obj/item/firing_pin/implant/mindshield
pin_removeable = TRUE
/obj/item/firing_pin/implant/pindicate
pin_removeable = TRUE
/obj/item/firing_pin/clown
pin_removeable = FALSE
/obj/item/firing_pin/dna
pin_removeable = FALSE
/obj/item/firing_pin/dna/dredd
pin_removeable = FALSE
/obj/item/firing_pin/holy
pin_removeable = FALSE
/obj/item/firing_pin/tag
pin_removeable = FALSE
/obj/item/firing_pin/security_level
pin_removeable = TRUE
/obj/item/firing_pin/explorer
pin_removeable = TRUE
/obj/item/firing_pin/abductor
pin_removeable = FALSE