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

[Balance] OT Damage Falloff Rebalance Attempt #6170

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 5 additions & 5 deletions code/modules/reagents/chemistry_reagents/other.dm
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@
//------------------//
explosive = TRUE
power = 0.12
falloff_modifier = -0.1
falloff_modifier = 0.1
burncolor = "#ff9900"
chemclass = CHEM_CLASS_RARE
properties = list(PROPERTY_FUELING = 5, PROPERTY_OXIDIZING = 3, PROPERTY_VISCOUS = 4, PROPERTY_TOXIC = 1)
Expand Down Expand Up @@ -894,7 +894,7 @@
description = "Ammonium nitrate fuel oil (ANFO) is a low cost bulk explosive commonly used for mining and construction operations."
explosive = TRUE
power = 1
falloff_modifier = -0.6
falloff_modifier = 0.2

/datum/reagent/nitroglycerin
name = "Nitroglycerin"
Expand All @@ -905,7 +905,7 @@
custom_metabolism = AMOUNT_PER_TIME(1, 200 SECONDS)
explosive = TRUE
power = 1
falloff_modifier = -0.5
falloff_modifier = 0.4

/datum/reagent/cyclonite
name = "Cyclonite"
Expand All @@ -915,7 +915,7 @@
color = "#E3E0BA"
explosive = TRUE
power = 1.5
falloff_modifier = -0.4
falloff_modifier = 0.5

/datum/reagent/cyclonite/on_mob_life(mob/living/M)
. = ..()
Expand All @@ -929,7 +929,7 @@
color = "#F5F5F5"
explosive = TRUE
power = 2
falloff_modifier = -0.2
falloff_modifier = 0.6
chemfiresupp = TRUE
properties = list(PROPERTY_OXIDIZING = 2)

Expand Down
Loading