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,48 @@
- type: entity
parent: BaseItem
id: BaseHandheldPowerMonitoringConsole
name: handheld power console
description: Fine-crafted handheld power map console for Chief Engineers. Allows the user to view the powergrid.
abstract: true
components:
- type: StationMap
- type: Sprite
sprite: Objects/Devices/tablets.rsi
layers:
- state: tablet
- state: powerconsole
shader: unshaded
- type: ActivatableUI
inHandsOnly: true
singleUser: true
key: enum.PowerMonitoringConsoleUiKey.Key
- type: PowerMonitoringConsole
- type: PowerMonitoringCableNetworks
- type: NodeContainer
- type: UserInterface
interfaces:
enum.PowerMonitoringConsoleUiKey.Key:
type: PowerMonitoringConsoleBoundUserInterface

- type: entity
id: HandheldPowerMonitoringConsole
parent:
- BaseHandheldPowerMonitoringConsole
suffix: Handheld, Always Powered
components:
- type: Damageable
- type: Injurable
damageContainer: Inorganic
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
damage: 100
behaviors:
- !type:DoActsBehavior
acts: [ "Destruction" ]

- type: entity
id: HandheldPowerMonitoringConsolePowered
parent: [HandheldPowerMonitoringConsole, BaseHandheldComputer]
suffix: Handheld
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "https://github.com/Baystation12/Baystation12/tree/17e84546562b97d775cb26790a08e6d87e7f8077",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "powerconsole",
"delays": [
[
0.3,
0.3
]
]
}
]
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@
- id: MetalFoamGrenade
- id: PlushieLizardJobChiefengineer
prob: 0.02
- id: HandheldPowerMonitoringConsole # Goobstation - TODO: Mapping

# Hardsuit table, used for suit storage as well
- type: entityTable
Expand Down
Loading