Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rpd for borgs #428

Merged
merged 3 commits into from
Sep 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
ent-ADTBorgModuleDetention = модуль задержания
.desc = сожержит вспышку, кабельные стяжки и телескопическую дубинку.
.desc = { ent-BaseBorgModule.desc }
ent-ADTBorgModuleHarm = модуль вреда
.desc = сожержит самозарядную лазерную винтовку и дубину для нанесения тяжких телесных повреждений.
.desc = { ent-BaseBorgModule.desc }
ent-ADTBorgModuleDisabler = модуль дизаблера
.desc = сожержит дизаблер и кабельные стяжки.
.desc = { ent-BaseBorgModule.desc }
ent-ADTBorgModuleRPD = РРТ-модуль киборга
.desc = { ent-BaseBorgModule.desc }
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ ent-ADTRPDAmmo = консервированная материя
ent-ADTRPDEmpty = { ent-ADTRPD }
.desc = { ent-ADTRPD.desc }
.suffix = Пустой
ent-ADTRPDRecharging = экспериментальный РРТ
.desc = Блюспейс-улучшенный РРТ, пассивно регенерирующий заряды.
.suffix = Автозарядка
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,16 @@
items:
- ADTInfCablecuffs
- ADTWeaponDisablerBorg

- type: entity
id: ADTBorgModuleRPD
parent: [ BaseBorgModuleEngineering, BaseProviderBorgModule ]
name: RPD cyborg module
components:
- type: Sprite
layers:
- state: engineering
- state: icon-rcd
- type: ItemBorgModule
items:
- ADTRPDRecharging
15 changes: 14 additions & 1 deletion Resources/Prototypes/ADT/Entities/Objects/Tools/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
id: ADTRPD
parent: BaseItem
name: RPD
description: Rapid Pipe Dispenser is used to quickly build structures for atmosphere operation and disposal.
description: The rapid pipe dispenser is used to quickly build structures for atmosphere operation and disposal.
components:
- type: RPD
availablePrototypes:
Expand Down Expand Up @@ -100,3 +100,16 @@
components:
- type: LimitedCharges
charges: 0

- type: entity
id: ADTRPDRecharging
parent: ADTRPD
name: experimental RPD
description: A bluespace-enhanced rapid pipe dispenser that passively generates its own compressed matter.
suffix: Recharging
components:
- type: LimitedCharges
maxCharges: 20
charges: 20
- type: AutoRecharge
rechargeDuration: 10
11 changes: 11 additions & 0 deletions Resources/Prototypes/ADT/Recipes/Lathes/robotics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,14 @@
materials:
Steel: 1750
Glass: 1500

- type: latheRecipe
id: ADTBorgModuleRPD
result: ADTBorgModuleRPD
category: Robotics
completetime: 3
materials:
Steel: 500
Glass: 500
Plastic: 250
Gold: 50
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,7 @@
- BorgModuleAdvancedTool
- BorgModuleGPS
- BorgModuleRCD
- ADTBorgModuleRPD # ADT-RPD
- BorgModuleArtifact
- BorgModuleAnomaly
- BorgModuleGardening
Expand Down
3 changes: 2 additions & 1 deletion Resources/Prototypes/Research/industrial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,14 @@
state: icon
discipline: Industrial
tier: 2
cost: 10000
cost: 10500 # ADT-RPD
recipeUnlocks:
- WelderExperimental
- PowerDrill
- JawsOfLife
- BorgModuleAdvancedTool
- BorgModuleRCD
- ADTBorgModuleRPD # ADT-RPD

- type: technology
id: MassExcavation
Expand Down
Loading