/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 = "CANNOT FIRE WHILE ON STATION!" 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