mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 16:42:13 +00:00
Dionaea can now be affected by most secret chems (#5643)
Dionaea are now affected by: - Liquid Light - Liquid Fire - Black Matter - Bluespace Dust - Bottled Lightning
This commit is contained in:
@@ -584,6 +584,7 @@
|
|||||||
taste_description = "bottled fire"
|
taste_description = "bottled fire"
|
||||||
var/datum/modifier/modifier
|
var/datum/modifier/modifier
|
||||||
fallback_specific_heat = 2.75
|
fallback_specific_heat = 2.75
|
||||||
|
unaffected_species = IS_MACHINE
|
||||||
|
|
||||||
/datum/reagent/estus/affect_blood(var/mob/living/carbon/M, var/removed)
|
/datum/reagent/estus/affect_blood(var/mob/living/carbon/M, var/removed)
|
||||||
if (!modifier)
|
if (!modifier)
|
||||||
@@ -612,6 +613,7 @@
|
|||||||
touch_met = 5
|
touch_met = 5
|
||||||
taste_description = "metal"
|
taste_description = "metal"
|
||||||
fallback_specific_heat = 20 //This holds a ton of heat.
|
fallback_specific_heat = 20 //This holds a ton of heat.
|
||||||
|
unaffected_species = IS_MACHINE
|
||||||
|
|
||||||
/datum/reagent/liquid_fire/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
/datum/reagent/liquid_fire/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||||
. = ..()
|
. = ..()
|
||||||
@@ -631,6 +633,7 @@
|
|||||||
color = "#000000"
|
color = "#000000"
|
||||||
taste_description = "emptyness"
|
taste_description = "emptyness"
|
||||||
fallback_specific_heat = 100 //Yeah...
|
fallback_specific_heat = 100 //Yeah...
|
||||||
|
unaffected_species = IS_MACHINE
|
||||||
|
|
||||||
/datum/reagent/black_matter/touch_turf(var/turf/T)
|
/datum/reagent/black_matter/touch_turf(var/turf/T)
|
||||||
var/obj/effect/portal/P = new /obj/effect/portal(T)
|
var/obj/effect/portal/P = new /obj/effect/portal(T)
|
||||||
@@ -655,6 +658,7 @@
|
|||||||
color = "#1f8999"
|
color = "#1f8999"
|
||||||
taste_description = "fizzling blue"
|
taste_description = "fizzling blue"
|
||||||
fallback_specific_heat = 0.1
|
fallback_specific_heat = 0.1
|
||||||
|
unaffected_species = IS_MACHINE
|
||||||
|
|
||||||
/datum/reagent/bluespace_dust/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
/datum/reagent/bluespace_dust/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||||
if(prob(25))
|
if(prob(25))
|
||||||
@@ -773,6 +777,7 @@
|
|||||||
color = "#70838A"
|
color = "#70838A"
|
||||||
taste_description = "metal"
|
taste_description = "metal"
|
||||||
fallback_specific_heat = 10
|
fallback_specific_heat = 10
|
||||||
|
unaffected_species = IS_MACHINE
|
||||||
|
|
||||||
/datum/reagent/bottle_lightning/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
/datum/reagent/bottle_lightning/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||||
if(prob(25))
|
if(prob(25))
|
||||||
|
|||||||
37
html/changelogs/burgerbb-dionaea.yml
Normal file
37
html/changelogs/burgerbb-dionaea.yml
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
################################
|
||||||
|
# Example Changelog File
|
||||||
|
#
|
||||||
|
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
|
||||||
|
#
|
||||||
|
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
|
||||||
|
# When it is, any changes listed below will disappear.
|
||||||
|
#
|
||||||
|
# Valid Prefixes:
|
||||||
|
# bugfix
|
||||||
|
# wip (For works in progress)
|
||||||
|
# tweak
|
||||||
|
# soundadd
|
||||||
|
# sounddel
|
||||||
|
# rscadd (general adding of nice things)
|
||||||
|
# rscdel (general deleting of nice things)
|
||||||
|
# imageadd
|
||||||
|
# imagedel
|
||||||
|
# maptweak
|
||||||
|
# spellcheck (typo fixes)
|
||||||
|
# experiment
|
||||||
|
# balance
|
||||||
|
#################################
|
||||||
|
|
||||||
|
# Your name.
|
||||||
|
author: BurgerBB
|
||||||
|
|
||||||
|
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
|
||||||
|
delete-after: True
|
||||||
|
|
||||||
|
# Any changes you've made. See valid prefix list above.
|
||||||
|
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
|
||||||
|
# SCREW THIS UP AND IT WON'T WORK.
|
||||||
|
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
|
||||||
|
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
|
||||||
|
changes:
|
||||||
|
- balance: "Dionaea can now be affected by most secret chems, including positive and negative ones."
|
||||||
Reference in New Issue
Block a user