Skip to content

Commit

Permalink
Added regen delay, added some loadout items icons
Browse files Browse the repository at this point in the history
  • Loading branch information
UEDCommander committed Feb 2, 2024
1 parent 72005a1 commit 4d61f0c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions mods/loadout_items/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- https://github.com/SierraBay/SierraBay12/pull/1643
- https://github.com/SierraBay/SierraBay12/pull/1650
- https://github.com/SierraBay/SierraBay12/pull/1761
- https://github.com/SierraBay/SierraBay12/pull/1856
<!--
Ссылки на PRы, связанные с модом:
- Создание
Expand Down
15 changes: 15 additions & 0 deletions mods/loadout_items/code/uniforms.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
item_state = "zpci_uniform"
armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) //it's security uniform's stats
siemens_coefficient = 0.9
sprite_sheets = list(
SPECIES_UNATHI = 'mods/loadout_items/icons/unathi/onmob_under_unathi.dmi'
)

/obj/item/clothing/under/rank/security/saarecombat
name = "\improper SAARE combat uniform"
Expand All @@ -28,6 +31,9 @@
item_state = "saarecombat"
worn_state = "saarecombat"
gender_icons = 1
sprite_sheets = list(
SPECIES_UNATHI = 'mods/loadout_items/icons/unathi/onmob_under_unathi.dmi'
)

// SIERRA TO DO: Cleanup icons from unused loadout

Expand Down Expand Up @@ -243,6 +249,9 @@
item_icons = list(slot_w_uniform_str = 'mods/loadout_items/icons/onmob_under.dmi')
icon_state = "gotsis_dress_1"
item_state = "gotsis_dress_1"
sprite_sheets = list(
SPECIES_UNATHI = 'mods/loadout_items/icons/unathi/onmob_under_unathi.dmi'
)

/obj/item/clothing/under/dress/gotsis_orange
name = "orange gotsis dress"
Expand All @@ -251,6 +260,9 @@
item_icons = list(slot_w_uniform_str = 'mods/loadout_items/icons/onmob_under.dmi')
icon_state = "gotsis_dress_2"
item_state = "gotsis_dress_2"
sprite_sheets = list(
SPECIES_UNATHI = 'mods/loadout_items/icons/unathi/onmob_under_unathi.dmi'
)

// Spotrs

Expand Down Expand Up @@ -441,6 +453,9 @@
icon_state = "victorian_dress"
item_state = "victorian_dress"
body_parts_covered = UPPER_TORSO|LOWER_TORSO
sprite_sheets = list(
SPECIES_UNATHI = 'mods/loadout_items/icons/unathi/onmob_under_unathi.dmi'
)

/obj/item/clothing/under/dress/victorian/red
name = "red victorian dress"
Expand Down
Binary file not shown.
1 change: 1 addition & 0 deletions mods/unathi/_unathi.dme
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// Далее просто включай свой код
// #include "code/something.dm"

#include "code/aura.dm"
#include "code/reagents.dm"
#include "code/species.dm"
#include "code/species_attack.dm"
Expand Down
3 changes: 3 additions & 0 deletions mods/unathi/code/aura.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/obj/aura/regenerating/human/unathi/toggle()
..()
toggle_blocked_until = max(world.time + 2 MINUTES, toggle_blocked_until)

0 comments on commit 4d61f0c

Please sign in to comment.