Skip to content

Commit

Permalink
[MODULAR] Grants Hearthkin Transcendent Olfaction (& One Other Thing)(#…
Browse files Browse the repository at this point in the history
…1022)

* initial d

* wew

* Apply suggestions from code review

* Maybe this will fix it?

* Revert "Maybe this will fix it?"

This reverts commit b75cca9d4d33634e1d899c3bc5fdabbd288b00a8.

* Test CI

* Update species.dm

* Testing to see if this fixes it

* Let's test this too.

* Update species.dm

* Update dna.dm

* Update dna.dm

* Update body.dm

* Revert "Update body.dm"

This reverts commit a213fc7c6091e626ebd870c8432db6f54cf1a6e6.

* Revert "Update dna.dm"

This reverts commit f4af1a25ad40e9e6caae4541aa6564607f9f785a.

* Revert "Update dna.dm"

This reverts commit 385c1122e99200fd85ee732c85f534b8dbdbc9db.

* Revert "Merge branch 'sniffsnoff' of https://github.com/Nerev4r/Skyrat-tg into pr/25067"

This reverts commit 825f586201aa42417bfb95cf29151336e51793b6, reversing
changes made to 385c1122e99200fd85ee732c85f534b8dbdbc9db.

* Revert "Let's test this too."

This reverts commit 55ecfa9b704c181ba1efb2ccb5cc8ae5014ebe6a.

* Revert "Testing to see if this fixes it"

This reverts commit f08e50c88f979284322a79c6c479195c7a1d47f6.

* Update species.dm

---------

Co-authored-by: Nerevar <[email protected]>
Co-authored-by: Snakebittenn <[email protected]>
Co-authored-by: Bloop <[email protected]>
Co-authored-by: Iajret <[email protected]>
  • Loading branch information
5 people authored Dec 7, 2023
1 parent 29d0581 commit 228014a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
/obj/item/clothing/neck/ranger_poncho/primitive_catgirl_leather = 5,
/obj/item/clothing/glasses/eyepatch/wrap = 5,
/obj/item/clothing/head/pelt/snow_tiger = 5,
/obj/item/clothing/head/pelt = 5,
/obj/item/clothing/head/pelt/black = 5,
/obj/item/clothing/head/pelt/white = 5,
/obj/item/clothing/head/pelt/wolf = 5,
Expand Down
20 changes: 20 additions & 0 deletions modular_skyrat/modules/primitive_catgirls/code/species.dm
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,26 @@

always_customizable = TRUE

/datum/species/human/felinid/primitive/on_species_gain(mob/living/carbon/new_primitive, datum/species/old_species, pref_load)
. = ..()
var/mob/living/carbon/human/hearthkin = new_primitive
if(!istype(hearthkin))
return
hearthkin.dna.add_mutation(/datum/mutation/human/olfaction, MUT_NORMAL)
hearthkin.dna.activate_mutation(/datum/mutation/human/olfaction)

// >mfw I take mutadone and my nose clogs
var/datum/mutation/human/olfaction/mutation = locate() in hearthkin.dna.mutations
mutation.mutadone_proof = TRUE
mutation.instability = 0

/datum/species/human/felinid/primitive/on_species_loss(mob/living/carbon/former_primitive, datum/species/new_species, pref_load)
. = ..()
var/mob/living/carbon/human/hearthkin = former_primitive
if(!istype(hearthkin))
return
hearthkin.dna.remove_mutation(/datum/mutation/human/olfaction)

/datum/species/human/felinid/primitive/prepare_human_for_preview(mob/living/carbon/human/human_for_preview)
human_for_preview.hairstyle = "Blunt Bangs Alt"
human_for_preview.hair_color = "#323442"
Expand Down

0 comments on commit 228014a

Please sign in to comment.