mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 00:29:02 +01:00
More /living/ abstract_types (#94092)
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
/// Root of shared behaviour for mobs spawned by blobs, is abstract and should not be spawned
|
||||
/mob/living/basic/blob_minion
|
||||
abstract_type = /mob/living/basic/blob_minion
|
||||
name = "Blob Error"
|
||||
desc = "A nonfunctional fungal creature created by bad code or celestial mistake. Point and laugh."
|
||||
icon = 'icons/mob/nonhuman-player/blob.dmi'
|
||||
|
||||
@@ -9,6 +9,7 @@ GLOBAL_LIST_INIT(command_strings, list(
|
||||
#define SENTIENT_BOT_RESET_TIMER 45 SECONDS
|
||||
|
||||
/mob/living/basic/bot
|
||||
abstract_type = /mob/living/basic/bot
|
||||
icon = 'icons/mob/silicon/aibots.dmi'
|
||||
layer = MOB_LAYER
|
||||
gender = NEUTER
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
///prototype for mining mobs
|
||||
/mob/living/basic/mining
|
||||
abstract_type = /mob/living/basic/mining
|
||||
icon = 'icons/mob/simple/lavaland/lavaland_monsters.dmi'
|
||||
combat_mode = TRUE
|
||||
status_flags = NONE //don't inherit standard basicmob flags
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
/mob/living/basic/pet/penguin
|
||||
abstract_type = /mob/living/basic/pet/penguin
|
||||
|
||||
icon = 'icons/mob/simple/penguins.dmi'
|
||||
gender = FEMALE
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
/mob/living/basic/pet
|
||||
abstract_type = /mob/living/basic/pet
|
||||
icon = 'icons/mob/simple/pets.dmi'
|
||||
mob_size = MOB_SIZE_SMALL
|
||||
mob_biotypes = MOB_ORGANIC|MOB_BEAST
|
||||
|
||||
@@ -8,6 +8,7 @@ GLOBAL_LIST_INIT(animatable_blacklist, typecacheof(list(
|
||||
)))
|
||||
|
||||
/mob/living/basic/mimic
|
||||
abstract_type = /mob/living/basic/mimic
|
||||
response_help_continuous = "touches"
|
||||
response_help_simple = "touch"
|
||||
response_disarm_continuous = "pushes"
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
/mob/living/carbon/alien/adult
|
||||
abstract_type = /mob/living/carbon/alien/adult
|
||||
name = "alien"
|
||||
icon_state = "alien"
|
||||
pass_flags = PASSTABLE
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
/mob/living/carbon/alien
|
||||
abstract_type = /mob/living/carbon/alien
|
||||
name = "alien"
|
||||
icon = 'icons/mob/nonhuman-player/alien.dmi'
|
||||
gender = FEMALE //All xenos are girls!!
|
||||
|
||||
@@ -1025,6 +1025,7 @@
|
||||
ai_controller = /datum/ai_controller/monkey
|
||||
|
||||
/mob/living/carbon/human/species
|
||||
abstract_type = /mob/living/carbon/human/species
|
||||
var/race = null
|
||||
var/use_random_name = TRUE
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
// AI (i.e. game AI, not the AI player) controlled bots
|
||||
/mob/living/simple_animal/bot
|
||||
abstract_type = /mob/living/simple_animal/bot
|
||||
icon = 'icons/mob/silicon/aibots.dmi'
|
||||
layer = MOB_LAYER
|
||||
gender = NEUTER
|
||||
|
||||
Reference in New Issue
Block a user