From 0ad804b518474c60341d5dc6ada49df0ac6437b2 Mon Sep 17 00:00:00 2001 From: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Date: Mon, 22 Jan 2024 16:25:37 +0100 Subject: [PATCH] coloured lights for mapping (#24402) done --- .../Structures/Lighting/base_lighting.yml | 69 +++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index 13385a763e..1e7351b663 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -355,3 +355,72 @@ mode: SnapgridCenter snap: - Wallmount + +#Coloured lights + +- type: entity + id: PoweredlightCyan + suffix: Cyan + parent: Poweredlight + components: + - type: PoweredLight + hasLampOnSpawn: LightTubeCrystalCyan + damage: + types: + Heat: 5 + +- type: entity + id: PoweredlightBlue + suffix: Blue + parent: Poweredlight + components: + - type: PoweredLight + hasLampOnSpawn: LightTubeCrystalBlue + damage: + types: + Heat: 5 + +- type: entity + id: PoweredlightPink + suffix: Pink + parent: Poweredlight + components: + - type: PoweredLight + hasLampOnSpawn: LightTubeCrystalPink + damage: + types: + Heat: 5 + +- type: entity + id: PoweredlightOrange + suffix: Orange + parent: Poweredlight + components: + - type: PoweredLight + hasLampOnSpawn: LightTubeCrystalOrange + damage: + types: + Heat: 5 + +- type: entity + id: PoweredlightRed + suffix: Red + parent: Poweredlight + components: + - type: PoweredLight + hasLampOnSpawn: LightTubeCrystalRed + damage: + types: + Heat: 5 + +- type: entity + id: PoweredlightGreen + suffix: Green + parent: Poweredlight + components: + - type: PoweredLight + hasLampOnSpawn: LightTubeCrystalGreen + damage: + types: + Heat: 5 + -- 2.51.2