Skip to content
Closed
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
@@ -0,0 +1,14 @@
/datum/reagent/toxin/chromium_trioxide
name = "Chromium Trioxide"
description = "A strong oxidizing toxin."
color = "#B22222"
toxpwr = 4

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
toxpwr = 4
toxpwr = 2

metabolization_rate = 0.1 * REAGENTS_METABOLISM

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Скорость метаболизма, при таком высоком уроне не оправдана. Всего два юнита данного реагента убивают насмерть любого человека. (см. ниже)

image image

Также отсутствуют какие либо интересные эффекты от реагента, исключая урон.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

liver_damage_multiplier = 0
ph = 0
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED

/datum/reagent/toxin/chromium_trioxide/on_mob_life(mob/living/carbon/affected_mob, seconds_per_tick, times_fired)
. = ..()
affected_mob.adjustOrganLoss(ORGAN_SLOT_LUNGS, 3 * REM * seconds_per_tick)

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/obj/item/storage/box/syndie_kit/chemical/PopulateContents()
. = ..()
new /obj/item/reagent_containers/cup/bottle/chromium_trioxide(src)
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/obj/item/reagent_containers/cup/bottle/chromium_trioxide
name = "chromium trioxide bottle"
desc = "A bottle filled with a dark red, highly toxic chromium solution."
list_reagents = list(/datum/reagent/toxin/chromium_trioxide = 30)
10 changes: 10 additions & 0 deletions modular_meta/features/chromium_trioxide/includes.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include "code\chromium_trioxide_reagent.dm"
#include "code\poison_kit_bottle.dm"
#include "code\poison_kit_chromium.dm"

/datum/modpack/chromium_trioxide
id = "chromium_trioxide"
name = "Триоксид хрома"
group = "Features"
desc = "Добавляет крайне ядовитое вещество"
author = "Sonfix"
1 change: 1 addition & 0 deletions modular_meta/main_modular_include.dm
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
#include "features\deathmatch\includes.dm"
#include "features\countdown_antimov_sfx\includes.dm"
#include "features\novichok\includes.dm"
#include "features\chromium_trioxide\includes.dm"

/* --- Reverts --- */

Expand Down
Loading