diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 95e5eef2164f..96dbdf75cb07 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -148,6 +148,7 @@ - LedLightTube - SodiumLightTube - ExteriorLightTube + - UvLightTube - LightBulb - LedLightBulb - DimLightBulb diff --git a/Resources/Prototypes/_Impstation/Entities/Objects/Power/lights.yml b/Resources/Prototypes/_Impstation/Entities/Objects/Power/lights.yml new file mode 100644 index 000000000000..d4a4ce61a4e2 --- /dev/null +++ b/Resources/Prototypes/_Impstation/Entities/Objects/Power/lights.yml @@ -0,0 +1,13 @@ +- type: entity + parent: BaseLightTube + name: ultraviolet light tube + description: A high power high energy bulb for the depths of space. Purple. + id: UvLightTube + components: + - type: LightBulb + color: "#9E00FF" + lightEnergy: 1 + lightRadius: 15 + lightSoftness: 0.9 + BurningTemperature: 320 + PowerUse: 100 diff --git a/Resources/Prototypes/_Impstation/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/_Impstation/Entities/Structures/Lighting/base_lighting.yml new file mode 100644 index 000000000000..ffe45ed91701 --- /dev/null +++ b/Resources/Prototypes/_Impstation/Entities/Structures/Lighting/base_lighting.yml @@ -0,0 +1,30 @@ +# UV lights +- type: entity + id: PoweredlightUV + description: "A light fixture. Draws power and produces light when equipped with a light tube." + suffix: UV + parent: Poweredlight + components: + - type: PoweredLight + hasLampOnSpawn: UvLightTube + - type: PointLight + radius: 15 + energy: 1 + softness: 0.9 + color: "#9E00FF" + - type: DamageOnInteract + damage: + types: + Heat: 1 + popupText: powered-light-component-burn-hand + +- type: entity + id: AlwaysPoweredLightUV + suffix: Always Powered, UV + parent: AlwaysPoweredWallLight + components: + - type: PointLight + radius: 10 + energy: 2.5 + softness: 0.9 + color: "#9E00FF" diff --git a/Resources/Prototypes/_Impstation/Recipes/Lathes/misc.yml b/Resources/Prototypes/_Impstation/Recipes/Lathes/misc.yml new file mode 100644 index 000000000000..10bb6f54365c --- /dev/null +++ b/Resources/Prototypes/_Impstation/Recipes/Lathes/misc.yml @@ -0,0 +1,8 @@ +- type: latheRecipe + id: UvLightTube + result: UvLightTube + category: Lights + completetime: 2 + materials: + Steel: 50 + Glass: 50