forked from SierraBay/SierraBay12
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Another anomaly patch (SierraBay#3151)
- Loading branch information
Showing
169 changed files
with
3,888 additions
and
9,879 deletions.
There are no files selected for viewing
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/singleton/modpack/anomaly | ||
name = "Интерактивные аномалии" | ||
desc = "Добавляет в игру полноценные аномалии, вдохновлённые Ашаном, пикником на обочине и сталкером." | ||
author = "Shegar(Код), HonkByEmo(Спрайты), AK200(Спрайты)" | ||
author = "Shegar(Код), HonkByEmo(Спрайты), AK200(Спрайты), Papa Leroy(Спрайты)" |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#ifndef MODPACK_ANOMALY | ||
#define MODPACK_ANOMALY | ||
|
||
#include "_anomaly.dm" | ||
// Далее просто включай свой код | ||
// #include "code/something.dm" | ||
#include "code\anomaly_admin.dm" //Админские кнопочки | ||
#include "code\anomaly_controller.dm" //Контроллер аномалий | ||
#include "code\anomaly_defines.dm" | ||
|
||
|
||
//Аномалии | ||
//Типы аномалий | ||
#include "code\anomalies\__anomalies_includes.dm" | ||
#include "code\artefacts\__small_artefacts_includes.dm" //Код артефактов и всё с ними связанное | ||
#include "code\big_artefacts\_big_artefacts_includes.dm" //Код больших артефактов | ||
#include "code\detectors_and_etc\_equipment_includes.dm" //Детекторы и прочее оборудование | ||
#include "code\spawn_anomalies_protocol\__spawn_protocols_includes.dm" //Размещение аномалий в игре | ||
#include "maps\anomaly_ruins_includes.dm" // Руины и разные карты | ||
|
||
//ETC | ||
#include "code\functions\locating.dm" | ||
|
||
#endif |
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,14 @@ | ||
#include "anomaly_types\_main_anomalies_includes.dm" //Сами аномалии | ||
#include "premades\_anomaly_premade_includes.dm" //Премейды аномалий | ||
#include "anomaly_core.dm" | ||
#include "anomaly_deleting.dm" | ||
#include "anomaly_electrostatic.dm" | ||
#include "anomaly_graphic.dm" | ||
#include "anomaly_loop.dm" | ||
#include "anomaly_parts.dm" | ||
#include "anomaly_preload.dm" | ||
#include "anomaly_randomize.dm" | ||
#include "anomaly_sound.dm" | ||
#include "anomaly_teamplay.dm" | ||
#include "anomaly_walking.dm" | ||
#include "interact_with_items.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
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
13 changes: 13 additions & 0 deletions
13
mods/anomaly/code/anomalies/anomaly_types/_main_anomalies_includes.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,13 @@ | ||
|
||
//Электрические | ||
#include "electra\electra_includes.dm" | ||
//Гравитационные | ||
#include "rvach.dm" | ||
#include "tramplin.dm" | ||
#include "ventilyator.dm" //[WIP] | ||
//Пространственные (Необьяснимые какой-либо природой) | ||
#include "vspishka.dm" | ||
#include "cooler.dm" | ||
//Термические | ||
#include "heater.dm" | ||
#include "zharka.dm" |
File renamed without changes.
Oops, something went wrong.