Skip to content

Commit

Permalink
Qbee Balance Update (#2355)
Browse files Browse the repository at this point in the history
* updates qbee

* Update queen_bee.dm
  • Loading branch information
Kitsunemitsu authored Aug 4, 2024
1 parent 1bc8815 commit 057dfef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/datums/diseases/bee_spawn.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
return

var/mob/living/carbon/human/H = affected_mob
H.apply_damage(stage*2, RED_DAMAGE, null, H.run_armor_check(null, RED_DAMAGE), spread_damage = TRUE)
H.apply_damage(stage*4, RED_DAMAGE, null, H.run_armor_check(null, RED_DAMAGE), spread_damage = TRUE)

if(H.health <= 0)
var/turf/T = get_turf(H)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
if(prob(25))
new /obj/effect/temp_visual/bee_gas(T)
for(var/mob/living/carbon/human/H in T.contents)
if(prob(90))
if(prob(90)) //TODO: Make this based off armor
var/datum/disease/bee_spawn/D = new()
H.ForceContractDisease(D, FALSE, TRUE)
for(var/mob/living/simple_animal/hostile/abnormality/general_b/Y in T.contents)
Expand All @@ -86,7 +86,7 @@

/mob/living/simple_animal/hostile/abnormality/queen_bee/NeutralEffect(mob/living/carbon/human/user, work_type, pe)
. = ..()
if(prob(40))
if(prob(10))
datum_reference.qliphoth_change(-1)
return

Expand Down

0 comments on commit 057dfef

Please sign in to comment.