Skip to content
Open
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
@@ -0,0 +1,22 @@
ent-ScpDebugInvisibleGenerator = { ent-BaseGenerator }
.suffix = ДЕБАГ, Невидимость
.desc = { ent-BaseGenerator.desc }
ent-ScpDebugInvisibleSMESRecharging = { ent-BaseSMES }
.suffix = ДЕБАГ, Невидимость, автоматическая перезарядка
.desc = { ent-BaseSMES.desc }
ent-ScpDebugInvisibleSubstationRecharging = { ent-BaseSubstation }
.suffix = ДЕБАГ, Невидимость, автоматическая перезарядка
.desc = { ent-BaseSubstation.desc }
ent-ScpDebugInvisibleAPCRecharging = { ent-BaseAPC }
.suffix = ДЕБАГ, Невидимость, Автоматическая перезарядка
.desc = { ent-BaseAPC.desc }

ent-ScpCableHVInvisible = { ent-CableHV }
.suffix = ДЕБАГ, Невидимость
.desc = { ent-CableHV.desc }
ent-ScpCableMVInvisible = { ent-CableMV }
.suffix = ДЕБАГ, Невидимость
.desc = { ent-CableMV.desc }
ent-ScpCableApcExtensionInvisible = { ent-CableApcExtension }
.suffix = ДЕБАГ, Невидимость
.desc = { ent-CableApcExtension.desc }
145 changes: 145 additions & 0 deletions Resources/Prototypes/_Scp/Entities/Structures/debug_power.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
- type: entity
id: ScpCableMVInvisible
parent: CablePhysBase
suffix: Invisible, DEBUG
components:
- type: Sprite
sprite: _Scp/Structures/Power/Cables/mv_cable.rsi
state: mvcable_15
Comment thread
coderabbitai[bot] marked this conversation as resolved.
- type: NodeContainer
nodes:
power:
!type:CableNode
nodeGroupID: MVPower
- type: Cable
cableDroppedOnCutPrototype: CableMVStack1
cableType: MediumVoltage
- type: Visibility
layer: 2
Comment thread
coderabbitai[bot] marked this conversation as resolved.

- type: entity
id: ScpCableApcExtensionInvisible
parent: CablePhysBase
suffix: Invisible, DEBUG
components:
- type: Sprite
sprite: _Scp/Structures/Power/Cables/lv_cable.rsi
state: lvcable_15
- type: NodeContainer
nodes:
power:
!type:CableNode
nodeGroupID: Apc
- type: PowerProvider
voltage: Apc
- type: ExtensionCableProvider
- type: Cable
cableDroppedOnCutPrototype: CableApcStack1
cableType: Apc
- type: Visibility
layer: 2

- type: entity
parent: CablePhysBase
id: ScpCableHVInvisible
suffix: Invisible, DEBUG
components:
- type: Sprite
sprite: _Scp/Structures/Power/Cables/hv_cable.rsi
state: hvcable_15
- type: NodeContainer
nodes:
power:
!type:CableNode
nodeGroupID: HVPower
- type: Cable
cableDroppedOnCutPrototype: CableHVStack1
cableType: HighVoltage
- type: Visibility
layer: 2

- type: entity
id: ScpDebugInvisibleGenerator
parent: BaseGenerator
suffix: Invisible, DEBUG
components:
- type: PowerSupplier
supplyRate: 300000
supplyRampRate: 50000
supplyRampTolerance: 500
- type: Visibility
layer: 2
- type: Fixtures
fixtures:
fix1:
shape:
!type:PhysShapeCircle
radius: 0.35
density: 50
mask:
- GhostImpassable
layer:
- GhostImpassable

- type: entity
parent: BaseSMES
id: ScpDebugInvisibleSMESRecharging
suffix: DEBUG, AutoRecharge, Invisible
components:
- type: BatterySelfRecharger
autoRechargeRate: 50000
- type: Visibility
layer: 2
- type: Fixtures
fixtures:
fix1:
shape:
!type:PhysShapeCircle
radius: 0.35
density: 50
mask:
- GhostImpassable
layer:
- GhostImpassable

- type: entity
parent: BaseSubstation
id: ScpDebugInvisibleSubstationRecharging
suffix: DEBUG, AutoRecharge, Invisible
components:
- type: BatterySelfRecharger
autoRechargeRate: 50000
- type: Visibility
layer: 2
- type: Fixtures
fixtures:
fix1:
shape:
!type:PhysShapeCircle
radius: 0.35
density: 50
mask:
- GhostImpassable
layer:
- GhostImpassable

- type: entity
parent: BaseAPC
id: ScpDebugInvisibleAPCRecharging
suffix: DEBUG, AutoRecharge, Invisible
components:
- type: BatterySelfRecharger
autoRechargeRate: 50000
- type: Visibility
layer: 2
- type: Fixtures
fixtures:
fix1:
shape:
!type:PhysShapeCircle
radius: 0.35
density: 50
mask:
- GhostImpassable
layer:
- GhostImpassable
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Loading