Skip to content

Commit

Permalink
remaps the shelter poi + adds new random subgroups
Browse files Browse the repository at this point in the history
  • Loading branch information
ephemeralstoryteller committed Oct 27, 2023
1 parent 27de62f commit c8185f8
Show file tree
Hide file tree
Showing 2 changed files with 569 additions and 30 deletions.
23 changes: 23 additions & 0 deletions code/game/objects/random/mob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,29 @@
prob(5);/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,
prob(5);/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong,
prob(5);/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard)

/obj/random/mob/robotic/hivebot/melee
name = "Random Lesser Melee Hivebot"
desc = "This is a random hivebot that engages in melee but has no special ability."
icon_state = "robot"

mob_faction = "hivebot"

/obj/random/mob/robotic/hivebot/melee/item_to_spawn()
return pick(prob(10);/mob/living/simple_mob/mechanical/hivebot,
prob(5);/mob/living/simple_mob/mechanical/hivebot/swarm)

/obj/random/mob/robotic/hivebot/laser
name = "Random Laser Hivebot"
desc = "This is a random hivebot that can shoot through obstacles and does burn damage."
icon_state = "robot"

mob_faction = "hivebot"

/obj/random/mob/robotic/hivebot/laser/item_to_spawn()
return pick(prob(30);/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser,
prob(5);/mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline
prob(5);/mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid)

//Mice

Expand Down
Loading

0 comments on commit c8185f8

Please sign in to comment.