Skip to content

Commit

Permalink
Приколы атмоса (#329)
Browse files Browse the repository at this point in the history
<!-- ЭТО ШАБЛОН ВАШЕГО PULL REQUEST. Текст между стрелками - это
комментарии - они не будут видны в PR. -->

## Описание PR
<!-- Ниже опишите ваш Pull Request. Что он изменяет? На что еще это
может повлиять? Постарайтесь описать все внесённые вами изменения! -->
Изменил суфикс труб, добавил печать канистры и закинул рсу и бтт в
изучения
**Медиа**
<!-- Если приемлемо, добавьте скриншоты для демонстрации вашего PR. Если
ваш PR представляет собой визуальное изменение, добавьте
скриншоты, иначе он может быть закрыт. -->

**Проверки**
<!-- Выполнение всех следующих действий, если это приемлемо для вида
изменений сильно ускорит разбор вашего PR -->
- [x] PR полностью завершён и мне не нужна помощь чтобы его закончить.
- [x] Я внимательно просмотрел все свои изменения и багов в них не
нашёл.
- [x] Я запускал локальный сервер со своими изменениями и всё
протестировал.
- [x] Я добавил скриншот/видео демонстрации PR в игре, **или** этот PR
этого не требует.

**Изменения**
<!--
Здесь вы можете написать список изменений, который будет автоматически
добавлен в игру, когда ваш PR будет принят.

В журнал изменений следует помещать только то, что действительно важно
игрокам.

В списке изменений тип значка не является часть предложения, поэтому
явно указывайте - Добавлен, Удалён, Изменён.
плохо: - add: Новый инструмент для инженеров
хорошо: - add: Добавлен новый инструмент для инженеров

Вы можете указать своё имя после символа 🆑 именно оно будет
отображаться в журнале изменений (иначе будет использоваться ваше имя на
GitHub)
Например: 🆑 Ian

-->

🆑
- add: Крафт канистры для хранения. Изучение РСУ и БТТ
- tweak: изменение цен канистр
  • Loading branch information
Flopochka authored Aug 23, 2024
1 parent b151dd1 commit bf99abf
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
ent-ADTGasPipeHalf = { ent-GasPipeBase }
.suffix = Половинная
.suffix = Половинная, ADT
.desc = { ent-GasPipeBase.desc }
ent-ADTGasPipeStraight = { ent-GasPipeBase }
.suffix = Прямая
.suffix = Прямая, ADT
.desc = { ent-GasPipeBase.desc }
ent-ADTGasPipeBend = { ent-GasPipeBase }
.suffix = Угловая
.suffix = Угловая, ADT
.desc = { ent-GasPipeBase.desc }
ent-ADTGasPipeTJunction = { ent-GasPipeBase }
.suffix = Т-образная
.suffix = Т-образная, ADT
.desc = { ent-GasPipeBase.desc }
ent-ADTGasPipeFourway = { ent-GasPipeBase }
.suffix = Четверная
.suffix = Четверная, ADT
.desc = { ent-GasPipeBase.desc }
1 change: 1 addition & 0 deletions Resources/Locale/ru-RU/ADT/research/technologies.ftl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
research-technology-compact-technologies = Технологии сжатия материи
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
- type: entity
parent: GasPipeHalf
id: ADTGasPipeHalf
suffix: Half
suffix: Half, ADT
components:
- type: Transform
anchored: false
Expand All @@ -14,7 +14,7 @@
- type: entity
parent: GasPipeStraight
id: ADTGasPipeStraight
suffix: Straight
suffix: Straight, ADT
components:
- type: Transform
anchored: false
Expand All @@ -27,7 +27,7 @@
- type: entity
parent: GasPipeBend
id: ADTGasPipeBend
suffix: Bend
suffix: Bend, ADT
components:
- type: Transform
anchored: false
Expand All @@ -40,7 +40,7 @@
- type: entity
parent: GasPipeTJunction
id: ADTGasPipeTJunction
suffix: TJunction
suffix: TJunction, ADT
components:
- type: Transform
anchored: false
Expand All @@ -53,7 +53,7 @@
- type: entity
parent: GasPipeFourway
id: ADTGasPipeFourway
suffix: Fourway
suffix: Fourway, ADT
components:
- type: Transform
anchored: false
Expand Down
7 changes: 7 additions & 0 deletions Resources/Prototypes/ADT/Recipes/Lathes/misc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
- type: latheRecipe
id: StorageCanister
result: StorageCanister
category: Atmos
completetime: 3
materials:
Steel: 3000
15 changes: 15 additions & 0 deletions Resources/Prototypes/ADT/Research/industrial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,18 @@
cost: 15000
recipeUnlocks:
- ADTIndustrialSMESMachineCircuitboard

- type: technology
id: ADTCompactTechnologies
name: research-technology-compact-technologies
icon:
sprite: Objects/Tools/rcd.rsi
state: icon
discipline: Industrial
tier: 2
cost: 10000
recipeUnlocks:
- RPD
- RPDAmmo
- RCD
- RCDAmmo
5 changes: 5 additions & 0 deletions Resources/Prototypes/Entities/Structures/Machines/lathe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
unlitIdleState: unlit
unlitRunningState: unlit-building
staticRecipes:
- StorageCanister #ADT tweak
- Wirecutter
- Igniter
- Signaller
Expand Down Expand Up @@ -310,6 +311,10 @@
- Igniter
- HandHeldMassScanner
- PowerCellMicroreactor
- RCD #ADT Tweak
- RCDAmmo #ADT Tweak
- RPDAmmo #ADT Tweak
- RPD #ADT Tweak
- PowerCellHigh
- WeaponPistolCHIMP
- ClothingMaskWeldingGas
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@
components:
- GasTank
- type: StaticPrice
price: 1000
price: 250 #ADT Tweak
# price: 1000
- type: AccessReader
access: [["Atmospherics"], ["Engineering"], ["Research"]]
- type: Lock
Expand Down

0 comments on commit bf99abf

Please sign in to comment.