Skip to content

Commit

Permalink
Update other.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveloopers authored Apr 1, 2024
1 parent 16892e0 commit 113a263
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions code/modules/reagents/chemistry_reagents/other.dm
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,14 @@
color = "#664B63" // rgb: 102, 75, 99
chemclass = CHEM_CLASS_UNCOMMON

/datum/reagent/foaming_agent/stabilized
name = "Stabilized metallic foam"
id = "stablefoam"
description = "Stabilized metallic foam that solidifies when exposed to an open flame"
reagent_state = LIQUID
color = "#d4b8d1"
chemclass = CHEM_CLASS_UNCOMMON

/datum/reagent/nicotine
name = "Nicotine"
id = "nicotine"
Expand Down Expand Up @@ -690,6 +698,36 @@
burn_sprite = "red"
properties = list(PROPERTY_OXIDIZING = 6, PROPERTY_FUELING = 7, PROPERTY_FLOWING = 1)

/datum/reagent/napalm/sticky
name = "Sticky-Napalm"
id = "stickynapalm"
description = "A custom napalm mix, stickier and lasts longer but lower damage"
reagent_state = LIQUID
color = "#f8e3b2"
chemfiresupp = FALSE
burncolor = "#f8e3b2"
burn_sprite = "dynamic"
properties = list(
PROPERTY_INTENSITY = BURN_LEVEL_TIER_2,
PROPERTY_DURATION = BURN_TIME_TIER_5,
PROPERTY_RADIUS = 5,
)

/datum/reagent/napalm/high_damage
name = "High-Combustion Napalm Fuel"
id = "highdamagenapalm"
description = "A custom napalm mix, higher damage but not as sticky"
reagent_state = LIQUID
color = "#742424"
chemfiresupp = FALSE
burncolor = "#742424"
burn_sprite = "dynamic"
properties = list(
PROPERTY_INTENSITY = BURN_LEVEL_TIER_8,
PROPERTY_DURATION = BURN_TIME_TIER_1,
PROPERTY_RADIUS = 5,
)

// This is the regular flamer fuel and pyro regular flamer fuel.
/datum/reagent/napalm/ut
name = "UT-Napthal Fuel"
Expand Down

0 comments on commit 113a263

Please sign in to comment.