hybridizing mining + more (#26214)

* hybridizing mining + more

* fix icebox

---------

Co-authored-by: Useroth <37159550+Useroth@users.noreply.github.com>
This commit is contained in:
jjpark-kb
2024-02-02 12:31:11 -08:00
committed by GitHub
parent 3e3b644e7f
commit 72c993a302
5 changed files with 62 additions and 6 deletions
@@ -126,6 +126,7 @@
* @param override_speed_multiplier The speed multiplier to use if weapon is null. The do_after will take 2 * this value seconds to complete.
* @param continued Whether or not this is a continued process, or the first one. If true, we don't play the "You swing at the boulder" message.
*/
/* SKYRAT EDIT OVERRIDE! Check the module:mining boulder.dm!
/obj/item/boulder/proc/manual_process(obj/item/weapon, mob/living/user, override_speed_multiplier, continued = FALSE)
var/process_speed = 0
//Handle weapon conditions.
@@ -168,7 +169,7 @@
var/msg = (durability == 1 ? "is crumbling!" : "looks weaker!")
to_chat(user, span_notice("\The [src] [msg]"))
manual_process(weapon, user, override_speed_multiplier, continued = TRUE)
*/
/**
* This function is called while breaking boulders manually, and drops ore based on the boulder's mineral content.
* Quantity of ore spawned here is 1 less than if the boulder was processed by a machine, but clamped at 10 maximum, 1 minimum.