diff --git a/code/game/objects/structures/ghost_pods/antagonist.dm b/code/game/objects/structures/ghost_pods/antagonist.dm index 96f68e4af7..e0504537db 100644 --- a/code/game/objects/structures/ghost_pods/antagonist.dm +++ b/code/game/objects/structures/ghost_pods/antagonist.dm @@ -6,11 +6,12 @@ description_info = "This contains a growing xenomorph larva, which may wake up at any moment. The larva will be another player, once activated." icon = 'icons/mob/alien.dmi' icon_state = "egg" - icon_state_opened = "egg_opened" //Can be placed on map with used = 1 for POI decorations + icon_state_opened = "egg_opened" var/health = 50 //So they can be destroyed by the crew density = FALSE ghost_query_type = /datum/ghost_query/xenomorph_larva delay_to_try_again = 1 MINUTES //10 minutes for egg to grow, 5 minutes for larva to mature + anchored = TRUE /obj/structure/ghost_pod/automatic/xenomorph_egg/create_occupant(var/mob/M) var/mob/living/carbon/alien/larva/R = new(get_turf(src))