Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic Ooze Changes. #4269

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
//swimming_component = /datum/component/swimming/dissolve
toxic_food = NONE
disliked_food = NONE
liked_food = TOXIC

bodypart_overrides = list(
BODY_ZONE_L_ARM = /obj/item/bodypart/arm/left/oozeling,
Expand Down Expand Up @@ -242,7 +243,7 @@
list(
SPECIES_PERK_TYPE = SPECIES_POSITIVE_PERK,
SPECIES_PERK_ICON = "burn",
SPECIES_PERK_NAME = "incombustible",
SPECIES_PERK_NAME = "Incombustible",
SPECIES_PERK_DESC = "[plural_form] cannot be set aflame.",
),
list(
Expand All @@ -266,8 +267,8 @@
list(
SPECIES_PERK_TYPE = SPECIES_NEGATIVE_PERK,
SPECIES_PERK_ICON = "tint",
SPECIES_PERK_NAME = "Liquid Being",
SPECIES_PERK_DESC = "[plural_form] will melt away when in contact with water.",
SPECIES_PERK_NAME = "Water Soluble",
SPECIES_PERK_DESC = "[plural_form] will dissolve when in contact with water.",
),
list(
SPECIES_PERK_TYPE = SPECIES_NEGATIVE_PERK,
Expand Down
5 changes: 5 additions & 0 deletions monkestation/code/modules/reagents/recipes/medical.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@
results = list(/datum/reagent/medicine/system_cleaner = 4)
required_reagents = list(/datum/reagent/consumable/ethanol = 1, /datum/reagent/chlorine = 1, /datum/reagent/phenol = 2, /datum/reagent/potassium = 1)
reaction_tags = REACTION_TAG_EASY | REACTION_TAG_HEALING | REACTION_TAG_OTHER

/datum/chemical_reaction/medicine/pyroxadone/alt
results = list(/datum/reagent/medicine/pyroxadone = 2)
required_reagents = list(/datum/reagent/medicine/cryoxadone = 1, /datum/reagent/toxin/slimeooze = 1)
reaction_tags = REACTION_TAG_EASY | REACTION_TAG_HEALING | REACTION_TAG_BRUTE |REACTION_TAG_BURN | REACTION_TAG_TOXIN | REACTION_TAG_OXY | REACTION_TAG_CLONE
Loading