Skip to content

Commit

Permalink
Add emergency locker on Delta arrival (#1621)
Browse files Browse the repository at this point in the history
## Что этот PR делает
Добавил 2 настенных экстренных шкафчика на шаттл прибытия Дельты
Так же анимировал настенные шкафчики, красивое

## Почему это хорошо для игры
Анимации - круто
Плюс не было шкафчиков в шаттле прибытие только на Дельте, их в целом на
дельте мало

## Изображения изменений
DIFF

## Тестирование
Шкафчики красиво анимируются

## Changelog

:cl:
add: Дельта: Добавлено 2 экстренных настенных шкафчика в шаттл прибытия
tweak: Настенные шкафчики теперь анимированы как обычные
/:cl:
  • Loading branch information
AyIong authored Oct 30, 2024
1 parent dc54455 commit 95df211
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions _maps/map_files220/stations/deltastation.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,7 @@
"ahW" = (
/obj/machinery/light/directional/south,
/obj/machinery/hologram/holopad,
/obj/structure/closet/walllocker/emerglocker/south,
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/arrival/station)
"aik" = (
Expand Down Expand Up @@ -1329,6 +1330,7 @@
/area/space)
"aka" = (
/obj/machinery/light/directional/north,
/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/mineral/titanium/blue,
/area/shuttle/arrival/station)
"akb" = (
Expand Down
11 changes: 7 additions & 4 deletions modular_ss220/aesthetics/wallcloset/code/wallcloset.dm
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
/obj/structure/closet/walllocker
icon = 'modular_ss220/aesthetics/wallcloset/icons/wallclosets.dmi'
door_anim_time = 2.0
enable_door_overlay = TRUE

/obj/structure/closet/walllocker/emerglocker
door_anim_time = 2.0

/obj/structure/closet/walllocker/firelocker
icon_state = "firecloset"
icon_closed = "firecloset"
icon_opened = "firecloset_open"
door_anim_time = 2.0

/obj/structure/closet/walllocker/firelocker/north
pixel_y = 32
Expand All @@ -31,8 +35,7 @@

/obj/structure/closet/walllocker/medlocker
icon_state = "medcloset"
icon_closed = "medcloset"
icon_opened = "medcloset_open"
door_anim_time = 2.0

/obj/structure/closet/walllocker/medlocker/north
pixel_y = 32
Expand Down
Binary file modified modular_ss220/aesthetics/wallcloset/icons/wallclosets.dmi
Binary file not shown.

0 comments on commit 95df211

Please sign in to comment.