Skip to content

Commit

Permalink
[MIRROR] Allows golem arms to dredge boulders from ore vents (#5236)
Browse files Browse the repository at this point in the history
* Allows golem arms to dredge boulders from ore vents (#4511)

* initial commit

* Apply suggestions from code review

Co-authored-by: Bloop <[email protected]>

* Update code/game/objects/structures/lavaland/ore_vent.dm

---------

Co-authored-by: Bloop <[email protected]>

* [MIRROR] Allows golem arms to dredge boulders from ore vents

---------

Co-authored-by: JimKil3 <[email protected]>
Co-authored-by: Bloop <[email protected]>
Co-authored-by: StealsThePRs <[email protected]>
  • Loading branch information
4 people authored Dec 17, 2024
1 parent 031d485 commit d32686e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions code/game/objects/structures/lavaland/ore_vent.dm
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,18 @@
return
to_chat(user, span_notice("You start striking [src] with your golem's fist, attempting to dredge up a boulder..."))
for(var/i in 1 to 3)
/* NOVA EDIT CHANGE START - ORIGINAL:
if(do_after(user, boulder_size * 1 SECONDS, src))
user.apply_damage(20, STAMINA)
playsound(src, 'sound/items/weapons/genhit.ogg', 50, TRUE)
*/
if(!do_after(user, boulder_size * 1 SECONDS, src))
user.balloon_alert(user, "stay still!")
return
user.balloon_alert(user, i > 2 ? "got one!" : "digging around...")
user.apply_damage(20, STAMINA)
playsound(src, 'sound/items/weapons/genhit.ogg', 50, TRUE)
// NOVA EDIT CHANGE END
produce_boulder(TRUE)
visible_message(span_notice("You've successfully produced a boulder! Boy are your arms tired."))

Expand Down

0 comments on commit d32686e

Please sign in to comment.