Skip to content

Commit

Permalink
yes i am making a single very autistic pr for this
Browse files Browse the repository at this point in the history
  • Loading branch information
KoishiVibe committed Jun 2, 2024
1 parent 75a1a15 commit 362d8f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/game/objects/structures/flora.dm
Original file line number Diff line number Diff line change
Expand Up @@ -706,15 +706,15 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE.
var/new_slowdown = H.next_move_slowdown + rand(4,7)
H.next_move_slowdown = new_slowdown
if(prob(10))
to_chat(H, SPAN_WARNING("It is very hard to move trough this [src]..."))
to_chat(H, SPAN_WARNING("It is very hard to move through this [src]..."))
if(8 to 9)
var/new_slowdown = H.next_move_slowdown + rand(8,11)
H.next_move_slowdown = new_slowdown
to_chat(H, SPAN_WARNING("You got tangeled in [src]!"))
to_chat(H, SPAN_WARNING("You got tangled in [src]!"))
if(10)
var/new_slowdown = H.next_move_slowdown + rand(12,20)
H.next_move_slowdown = new_slowdown
to_chat(H, SPAN_WARNING("You got completely tangeled in [src]! Oh boy..."))
to_chat(H, SPAN_WARNING("You got completely tangled in [src]! Oh boy..."))

/obj/structure/flora/jungle/thickbush/attackby(obj/item/I as obj, mob/user as mob)
//hatchets and shiet can clear away undergrowth
Expand All @@ -724,9 +724,9 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE.
damage = rand(8,18)
if(indestructable)
//this bush marks the edge of the map, you can't destroy it
to_chat(user, SPAN_DANGER("You flail away at the undergrowth, but it's too thick here."))
to_chat(user, SPAN_DANGER("You chop at the undergrowth, but it's too thick here."))
else
user.visible_message(SPAN_DANGER("[user] flails away at the [src] with [I]."),SPAN_DANGER("You flail away at the [src] with [I]."))
user.visible_message(SPAN_DANGER("[user] chops at the [src] with [I]."),SPAN_DANGER("You chop at the [src] with [I]."))
playsound(src.loc, 'sound/effects/vegetation_hit.ogg', 25, 1)
health -= damage
if(health < 0)
Expand Down

0 comments on commit 362d8f8

Please sign in to comment.