forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Что этот PR делает Мергес апстрим. ## Changelog :cl: Paradise SS13 add: Добавлен новый КПБ антагонист - Mindflayer. Вампир/генокрад на манер КПБ. Подробности [тут](ParadiseSS13#26596). fix: ИИ больше не видит через скрытые камеры и камеры на синди базе. fix: Заказы в консоли карго больше не застревают, если заказчик ушел в крио. /:cl:
- Loading branch information
Showing
130 changed files
with
3,380 additions
and
447 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,6 +74,7 @@ $RECYCLE.BIN | |
|
||
# Rust output. | ||
/rust/target/* | ||
rustlibs_panic.txt | ||
|
||
# mkdocs output. | ||
site | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Defines below to be used with the `power_type` var. | ||
/// Denotes that this power is free and should be given to all mindflayers by default. | ||
#define FLAYER_INNATE_POWER 1 | ||
/// Denotes that this power can only be obtained by purchasing it. | ||
#define FLAYER_PURCHASABLE_POWER 2 | ||
/// Denotes that this power can not be obtained normally. Primarily used for base types such as [/datum/spell/flayer/weapon]. | ||
#define FLAYER_UNOBTAINABLE_POWER 3 | ||
|
||
/// How many swarms can you drain per person? | ||
#define BRAIN_DRAIN_LIMIT 120 | ||
/// The time per harvesting tick | ||
#define DRAIN_TIME 0.25 SECONDS | ||
/// If we want to keep draining someone but we don't have any swarms to gain | ||
#define DRAIN_BUT_NO_SWARMS 2 | ||
|
||
#define isflayerpassive(A) (istype(A, /datum/mindflayer_passive)) | ||
|
||
// For organizing what spells are available for what trees | ||
#define FLAYER_CATEGORY_GENERAL "general" | ||
#define FLAYER_CATEGORY_DESTROYER "destroyer" | ||
#define FLAYER_CATEGORY_INTRUDER "intruder" | ||
#define FLAYER_CATEGORY_SWARMER "swarmer" | ||
|
||
#define FLAYER_POWER_LEVEL_ZERO 0 | ||
#define FLAYER_POWER_LEVEL_ONE 1 | ||
#define FLAYER_POWER_LEVEL_TWO 2 | ||
#define FLAYER_POWER_LEVEL_THREE 3 | ||
#define FLAYER_POWER_LEVEL_FOUR 4 | ||
|
||
#define FLAYER_CAPSTONE_STAGE 4 |
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
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
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
Oops, something went wrong.