Skip to content

Commit

Permalink
Решение энергетического кризиса станций (#292)
Browse files Browse the repository at this point in the history
Решение энергокризиса на станции
В ящике компонентов дам 12 штук вместо 9 - можно запустить двухядерник
Соляры вырабатывают в 2.5 раза больше - теперь они значимый источник
электроэнергии
Добавлена возможность покупки компонентов ДАМ и контроллера ДАМ

:cl:
- add: Добавлена покупка компонентов ДАМ и контроллера ДАМ в карго
- tweak: Количество компонентов ДАМ в одном ящике увеличено до 12 вместо
9
- tweak: Выработка солнечных батарей увеличена в 2.5 раза
  • Loading branch information
PyotrIgn authored Aug 17, 2024
1 parent 507c73e commit 714a1cb
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Content.Server/Solar/Components/SolarPanelComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public sealed partial class SolarPanelComponent : Component
/// Maximum supply output by this panel (coverage = 1)
/// </summary>
[DataField("maxSupply")]
public int MaxSupply = 750;
public int MaxSupply = 1875; ///ADT_Tweak

/// <summary>
/// Current coverage of this panel (from 0 to 1).
Expand Down
20 changes: 20 additions & 0 deletions Resources/Prototypes/ADT/Catalog/Cargo/cargo_engines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

- type: cargoProduct
id: EngineeringAMEShielding
icon:
sprite: Objects/Devices/flatpack.rsi
state: ame-part
product: CrateEngineeringAMEShielding
cost: 7500
category: cargoproduct-category-name-engineering
group: market

- type: cargoProduct
id: EngineeringAMEControl
icon:
sprite: Structures/Power/Generation/ame.rsi
state: control
product: CrateEngineeringAMEControl
cost: 2500
category: cargoproduct-category-name-engineering
group: market
2 changes: 1 addition & 1 deletion Resources/Prototypes/Catalog/Fills/Crates/engines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- type: StorageFill
contents:
- id: AmePartFlatpack
amount: 9
amount: 12 #ADT_Tweaks

- type: entity
id: CrateEngineeringAMEJar
Expand Down

0 comments on commit 714a1cb

Please sign in to comment.