Skip to content

Commit

Permalink
Hydroponic: Biogenerator designs (#962)
Browse files Browse the repository at this point in the history
## Что этот PR делает

Портирует рецепты для биогенератора с парадайза SS220

## Почему это хорошо для игры

Разнообразит игру в ботанике

## Тестирование

Тестировал локально


![image](https://github.com/user-attachments/assets/cc6c1a27-9508-4013-8e6c-0b1779e28328)

## Changelog

:cl:
add: Рецепт биогенератора: Странные семена
add: Рецепт биогенератора: Подсумок для материалов
/:cl:

## Summary by Sourcery

New Features:
- Add Strange Seed Pack and Material Pouch biogenerator designs to
diversify botany gameplay.
  • Loading branch information
Nlaysi authored Jan 10, 2025
1 parent 42e0aae commit 3cd474a
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modular_bandastation/hydroponics/_hydroponics.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/datum/modpack/hydroponics
name = "Ботаника"
desc = "Растения, приборы и прочие улучшения для ботаники."
author = "Nlaysi"
3 changes: 3 additions & 0 deletions modular_bandastation/hydroponics/_hydroponics.dme
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "_hydroponics.dm"

#include "code/biogenerator_designs.dm"
15 changes: 15 additions & 0 deletions modular_bandastation/hydroponics/code/biogenerator_designs.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/datum/design/strange_seeds
name = "Strange seed pack"
id = "strange_seeds"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 2000)
build_path = /obj/item/seeds/random
category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_MATERIALS)

/datum/design/material_pouch
name = "Material pouch"
id = "material_pouch"
build_type = BIOGENERATOR
materials = list(/datum/material/biomass = 200)
build_path = /obj/item/storage/bag/material_pouch
category = list(RND_CATEGORY_INITIAL, RND_CATEGORY_BIO_MATERIALS)
1 change: 1 addition & 0 deletions modular_bandastation/modular_bandastation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
#include "automatic_crew_transfer/_automatic_crew_transfer.dme"
#include "outfits/_outfits.dme"
#include "overrides/_overrides.dme"
#include "hydroponics/_hydroponics.dme"


// --- PRIME --- //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12108,3 +12108,19 @@ dative = "своим"
accusative = "свои"
instrumental = "своими"
prepositional = "своих"

["strange seed pack"]
nominative = "странные семена"
genitive = "странных семян"
dative = "странным семянам"
accusative = "странные семена"
instrumental = "странными семенами"
prepositional = "странных семянах"

["material pouch"]
nominative = "подсумок для материалов"
genitive = "подсумоков для материалов"
dative = "подсумку для материалов"
accusative = "подсумок для материалов"
instrumental = "подсумком для материалов"
prepositional = "подсумке для материалов"

0 comments on commit 3cd474a

Please sign in to comment.