Adds Research Lab POI and some other stuff. (#9026)

* Adds random zippo lighter.

* Adds random zippo lighter part 2.

* Adds random zippo.

* first prototype of the Research POI.

* Research POI definitions.

* Adding android simplemobs.

* Adds voice lines for fleeing.

* Fix robocorpses.

* Progress as of 28-02-23.

* Progress as of 02-03-23.

* Add detailing to the map

* de-stationifying the POI a bit

* Finishes adding android drone enemies.

* Final pass on Gene Lab POI.

* Fix corpse.dm linter error.

---------

Co-authored-by: Cerebulon <tanhindmarsh@yahoo.com>
This commit is contained in:
Martin Rivard
2023-03-23 19:40:29 -08:00
committed by GitHub
co-authored by Cerebulon
parent 8ede4b4c79
commit a8b209ef93
12 changed files with 2622 additions and 4 deletions
+7 -1
View File
@@ -114,4 +114,10 @@
icon_state = "yellow-1"
catalogue_data = list(/datum/category_item/catalogue/information/objects/growthcanister)
anchored = 0
density = 1
density = 1
/mob/living/carbon/human/monkey/simeon/Initialize()
. = ..()
name = "Simeon"
real_name = name
desc = "This lab monkey has a certain glint in their eye."
+20
View File
@@ -890,6 +890,26 @@
prob(5);/obj/item/clothing/head/helmet/space/void/scg/heavy
)
/obj/random/zippo
name = "Random Zippo Lighter"
desc = "This is a random Zippo lighter."
/obj/random/zippo/item_to_spawn()
return pick(
prob(50);/obj/item/flame/lighter/zippo,
prob(5);/obj/item/flame/lighter/zippo/black,
prob(5);/obj/item/flame/lighter/zippo/blue,
prob(10);/obj/item/flame/lighter/zippo/capitalist,
prob(10);/obj/item/flame/lighter/zippo/communist,
prob(5);/obj/item/flame/lighter/zippo/engraved,
prob(5);/obj/item/flame/lighter/zippo/gold,
prob(5);/obj/item/flame/lighter/zippo/gonzo,
prob(5);/obj/item/flame/lighter/zippo/moff,
prob(5);/obj/item/flame/lighter/zippo/rainbow,
prob(5);/obj/item/flame/lighter/zippo/red,
prob(5);/obj/item/flame/lighter/zippo/royal
)
/obj/random/dufflebag
desc = "This is a random non-department-specific dufflebag."