Skip to content

Commit

Permalink
Finally, Spicy Cheese (Citadel-Station-13#5511)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

I talked about it for months now

## Why It's Good For The Game

None of my PRs are

## Changelog

<!-- If your PR modifies aspects of the game that can be concretely
observed by players or admins you should add a changelog. If your change
does NOT meet this description, remove this section. Be sure to properly
mark your PRs to prevent unnecessary GBP loss. You can read up on GBP
and it's effects on PRs in the tgstation guides for contributors. Please
note that maintainers freely reserve the right to remove and add tags
should they deem it appropriate. You can attempt to finagle the system
all you want, but it's best to shoot for clear communication right off
the bat. -->

:cl:
Naramadi can't taste capsaisin anymore (still affected by pepperspray)
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
LordPapalus authored May 22, 2023
1 parent f0ace7e commit 62aecce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/__DEFINES/chemistry.dm
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
#define IS_APIDAEN 15
#define IS_XENOHYBRID 16
#define IS_MOTH 17
#define IS_NARAMADI 18

/// Inaprovaline
#define CE_STABLE "stable"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,8 @@
/datum/reagent/capsaicin/affect_ingest(mob/living/carbon/M, alien, removed)
if(alien == IS_DIONA)
return
if(alien == IS_NARAMADI)
return
if(alien == IS_ALRAUNE) //cit change: it wouldn't affect plants that much.
if(prob(5))
to_chat(M, SPAN_ROSE("You feel a pleasant sensation in your mouth."))
Expand Down
2 changes: 2 additions & 0 deletions code/modules/species/station/standard/naramadi.dm
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@

species_spawn_flags = SPECIES_SPAWN_CHARACTER
species_appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR

reagent_tag = IS_NARAMADI

flesh_color = "#AFA59E"
base_color = "#777777"
Expand Down

0 comments on commit 62aecce

Please sign in to comment.