forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cyberiad: Various improves and fixes (#991)
1. Различные фиксы и улучшения Кибериады. - Поправил летающие лампочки. - Зона с названием "Consul Chamber" была заменена на понятную митинг руму глав. - Добавил еще больше недостающего контента с оригинальной карты. - Поправил зону у Хопской. - Вся тайлы воды на станции (по факту на мостике и в баньке) были заменены на воду в которой нельзя рыбачить, кроме одной зоны - парка в гетто, там все еще вода с рыбками. 2. Портировал еще один сайдинг с Пары. 3. Портировал с Пары статуи Кибериады и Дельты. 4. Добавил новый подтип воды no_fishing и альтернативный тайл воды с спрайтом (модифицированным) с билда Mojave Sun. 5. Вроде пофиксил странное поведение лееров у шаттеров и бластдоров. ## Summary by Sourcery Add statues for Cyberiad and Delta stations, a new "royal" siding type, a new water subtype with no fishing, and an alternative water tile. Update the Cyberiad map with content from the original map and replace the "Consul Chamber" with a meeting room. New Features: - Added statues for Cyberiad and Delta stations. - Added a new "royal" siding type. - Added a new water subtype with no fishing and an alternative water tile. ## Summary by Sourcery Add statues for Cyberiad and Delta stations, add a new "royal" siding type, and add a new water subtype with no fishing and an alternative water tile. Update the Cyberiad map with content from the original map and replace the "Consul Chamber" with a meeting room. New Features: - Add statues for Cyberiad and Delta stations. - Add a new "royal" siding type. - Add a new water subtype with no fishing and an alternative water tile.
- Loading branch information
Showing
15 changed files
with
620 additions
and
326 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file modified
BIN
+1.27 KB
(120%)
modular_bandastation/objects/icons/obj/structures/chairs.dmi
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/datum/modpack/mobs | ||
name = "Turfs" | ||
desc = "Кастомные полы и стены." | ||
author = "dj-34" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#include "_turfs.dm" | ||
|
||
#include "code/water.dm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/turf/open/water/no_fishing | ||
fishing_datum = null // There's no fish in it | ||
|
||
/turf/open/water/alternative | ||
desc = "Прозрачная вода." | ||
icon = 'modular_bandastation/turfs/icons/water.dmi' | ||
icon_state = "water" | ||
base_icon_state = "water" | ||
baseturfs = /turf/open/water/alternative | ||
immerse_overlay_color = "#7799AA" | ||
|
||
/turf/open/water/alternative/no_fishing | ||
fishing_datum = null // There's no fish in it | ||
|
||
/turf/open/water/alternative/muddy | ||
desc = "Очень старая стоячая вода. Туда страшно даже ногу опустить." | ||
icon_state = "water_sewer" | ||
base_icon_state = "water_sewer" | ||
baseturfs = /turf/open/water/alternative/muddy | ||
immerse_overlay_color = "#92aa77" | ||
|
||
/turf/open/water/alternative/muddy/no_fishing | ||
fishing_datum = null // There's no fish in it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Creative Commons 3.0 BY-NC-SA license. | ||
|
||
All DMI files are also licensed under GNU AGPL v3. | ||
water.dmi by Mojave Sun | https://github.com/Mojave-Sun/mojave-sun-13/blob/HEAD/mojave/icons/turf/water.dmi |
Binary file not shown.