-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix: DNA and Embedded Fixes (#5095)
* DNA and Embedded Fixes * As Anything
- Loading branch information
Showing
12 changed files
with
72 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,45 @@ | ||
/mob/living/carbon/human/lesser | ||
var/master_commander = null //переменная хранящая владельца "животного" | ||
icon = 'icons/mob/monkey.dmi' // for mappers | ||
var/master_commander = null | ||
var/sentience_type = SENTIENCE_ORGANIC | ||
//holder_type = /obj/item/holder/monkey //Задыхается сидя на голове или в сумке, временно отключен | ||
|
||
/mob/living/carbon/human/lesser/Initialize(mapload, species) | ||
icon = null | ||
. = ..(mapload, species) | ||
|
||
/mob/living/carbon/human/lesser/setup_dna(datum/species/new_species) | ||
/mob/living/carbon/human/lesser/setup_dna(datum/species/new_species, flatten_SE = FALSE) | ||
. = ..() | ||
dna.SetSEState(GLOB.monkeyblock, TRUE) | ||
// since we are created as monkas we need to manually set our GLOB.monkeyblock as activated | ||
// and also we are skipping SE flattening for the same reasons | ||
LAZYOR(active_genes, /datum/dna/gene/monkey) | ||
|
||
/mob/living/carbon/human/lesser/monkey | ||
icon_state = "monkey1" | ||
|
||
/mob/living/carbon/human/lesser/monkey/Initialize(mapload) | ||
. = ..(mapload, /datum/species/monkey) | ||
tts_seed = "Sniper" | ||
|
||
/mob/living/carbon/human/lesser/farwa | ||
icon_state = "tajkey1" | ||
|
||
/mob/living/carbon/human/lesser/farwa/Initialize(mapload) | ||
. = ..(mapload, /datum/species/monkey/tajaran) | ||
tts_seed = "Gyro" | ||
//holder_type = /obj/item/holder/farwa | ||
|
||
/mob/living/carbon/human/lesser/wolpin | ||
icon_state = "wolfling" | ||
|
||
/mob/living/carbon/human/lesser/wolpin/Initialize(mapload) | ||
. = ..(mapload, /datum/species/monkey/vulpkanin) | ||
tts_seed = "Bloodseeker" | ||
//holder_type = /obj/item/holder/farwa | ||
|
||
/mob/living/carbon/human/lesser/neara | ||
icon_state = "skrellkey1" | ||
|
||
/mob/living/carbon/human/lesser/neara/Initialize(mapload) | ||
. = ..(mapload, /datum/species/monkey/skrell) | ||
tts_seed = "Bounty" | ||
//holder_type = /obj/item/holder/neara | ||
|
||
/mob/living/carbon/human/lesser/stok | ||
icon_state = "stokkey1" | ||
|
||
/mob/living/carbon/human/lesser/stok/Initialize(mapload) | ||
. = ..(mapload, /datum/species/monkey/unathi) | ||
tts_seed = "Witchdoctor" | ||
//holder_type = /obj/item/holder/stok |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters