forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev-sierra' into explosions
- Loading branch information
Showing
6 changed files
with
119 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
author: Baneuus | ||
changes: | ||
- {tweak: Теперь введение крови в золотое ядро спаунит злого моба.} | ||
- {tweak: Теперь введение крови в лазурное ядро спаунит зелье возрождения слизня.} | ||
delete-after: true |
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,71 @@ | ||
#### Список PRов: | ||
|
||
https://github.com/SierraBay/SierraBay12/pull/2823 | ||
|
||
<!-- Название мода. Не важно на русском или на английском. --> | ||
## Мод-пример | ||
|
||
ID мода: CHEMTWEAKS | ||
<!-- | ||
Название модпака прописными буквами, СОЕДИНЁННЫМИ_ПОДЧЁРКИВАНИЕМ, | ||
которое ты будешь использовать для обозначения файлов. | ||
--> | ||
|
||
### Описание мода | ||
|
||
Мод, служащий для более лёгкого изменения рецептов. | ||
<!-- | ||
Что он делает, что добавляет: что, куда, зачем и почему - всё здесь. | ||
А также любая полезная информация. | ||
--> | ||
|
||
### Изменения *кор кода* | ||
|
||
Отсутствуют | ||
<!-- | ||
Если вы редактировали какие-либо процедуры или переменные в кор коде, | ||
они должны быть указаны здесь. | ||
Нужно указать и файл, и процедуры/переменные. | ||
Изменений нет - напиши "Отсутствуют" | ||
--> | ||
|
||
### Оверрайды | ||
|
||
- `code/modules/reagents/Chemistry-Recipes.dm` | ||
<!-- | ||
Если ты добавлял новый модульный оверрайд, его нужно указать здесь. | ||
Здесь указываются оверрайды в твоём моде и папке `_master_files` | ||
Изменений нет - напиши "Отсутствуют" | ||
--> | ||
|
||
### Дефайны | ||
|
||
Отсутствуют | ||
<!-- | ||
Если требовалось добавить какие-либо дефайны, укажи файлы, | ||
в которые ты их добавил, а также перечисли имена. | ||
И то же самое, если ты используешь дефайны, определённые другим модом. | ||
Не используешь - напиши "Отсутствуют" | ||
--> | ||
|
||
### Используемые файлы, не содержащиеся в модпаке | ||
|
||
Отсутствуют | ||
<!-- | ||
Будь то немодульный файл или модульный файл, который не содержится в папке, | ||
принадлежащей этому конкретному моду, он должен быть упомянут здесь. | ||
Хорошими примерами являются иконки или звуки, которые используются одновременно | ||
несколькими модулями, или что-либо подобное. | ||
--> | ||
|
||
### Авторы: | ||
|
||
Baneuus | ||
<!-- | ||
Здесь находится твой никнейм | ||
Если работал совместно - никнеймы тех, кто помогал. | ||
В случае порта чего-либо должна быть ссылка на источник. | ||
--> |
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 @@ | ||
/singleton/modpack/chemtweaks | ||
name = "ChemTweaks" | ||
desc = "Мод, позволяющий так или иначе изменять рецепты в билде" | ||
author = "Baneuus" |
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,8 @@ | ||
#ifndef MODPACK_CHEMTWEAKS | ||
#define MODPACK_CHEMTWEAKS | ||
|
||
#include "_chemtweaks.dm" | ||
|
||
#include "code/Chemistry-Recipes.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,30 @@ | ||
/singleton/reaction/slime/crit_hostile | ||
name = "Slime Crit Hostile" | ||
result = null | ||
required_reagents = list(/datum/reagent/blood = 1) | ||
result_amount = 1 | ||
required = /obj/item/slime_extract/gold | ||
var/list/possible_mobs = list( | ||
/mob/living/simple_animal/hostile/carp, | ||
/mob/living/simple_animal/hostile/carp/shark, | ||
/mob/living/simple_animal/hostile/carp/pike, | ||
/mob/living/simple_animal/hostile/bear, | ||
/mob/living/simple_animal/hostile/drake, | ||
/mob/living/simple_animal/hostile/giant_spider, | ||
/mob/living/simple_animal/hostile/retaliate/beast/antlion, | ||
/mob/living/simple_animal/hostile/creature, | ||
/mob/living/simple_animal/hostile/leech, | ||
/mob/living/simple_animal/hostile/vagrant | ||
) | ||
|
||
/singleton/reaction/slime/crit_hostile/on_reaction(datum/reagents/holder) | ||
..() | ||
var/type = pick(possible_mobs) | ||
new type(get_turf(holder.my_atom)) | ||
|
||
/singleton/reaction/slime/grevive | ||
name = "Slime Revive" | ||
result = null | ||
required_reagents = list(/datum/reagent/blood = 1) | ||
result_amount = 1 | ||
required = /obj/item/slime_extract/cerulean |
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