Led light brightness nerf + power increase (#6259)

This commit is contained in:
Peptide90
2022-01-27 00:01:32 +00:00
committed by GitHub
parent fcf3b023ce
commit fe2e24cf98
3 changed files with 65 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ namespace Content.Server.Light.Components
public float LightSoftness = 1; public float LightSoftness = 1;
[DataField("PowerUse")] [DataField("PowerUse")]
public int PowerUse = 40; public int PowerUse = 60;
[DataField("breakSound")] [DataField("breakSound")]
public SoundSpecifier BreakSound = new SoundCollectionSpecifier("GlassBreak"); public SoundSpecifier BreakSound = new SoundCollectionSpecifier("GlassBreak");

View File

@@ -1,4 +1,3 @@
# TODO: Add description (1)
- type: entity - type: entity
parent: BaseItem parent: BaseItem
id: BaseLightbulb id: BaseLightbulb
@@ -95,16 +94,53 @@
- type: entity - type: entity
parent: BaseLightbulb parent: BaseLightbulb
name: led light tube name: led light tube
description: A high power high energy bulb.
id: LedLightTube id: LedLightTube
components: components:
- type: LightBulb - type: LightBulb
bulb: Tube bulb: Tube
color: "#EEEEFF" color: "#EEEEFF"
lightEnergy: 4 lightEnergy: 2.5
lightRadius: 10 lightRadius: 10
lightSoftness: 0.9 lightSoftness: 0.9
BurningTemperature: 350 BurningTemperature: 350
PowerUse: 9 PowerUse: 25
- type: Sprite
sprite: Objects/Power/light_tube.rsi
state: normal
- type: entity
parent: BaseLightbulb
name: exterior light tube
description: A high power high energy bulb for the depths of space. May contain mercury.
id: ExteriorLightTube
components:
- type: LightBulb
bulb: Tube
color: "#B4FCF0"
lightEnergy: 4.5
lightRadius: 12
lightSoftness: 0.5
BurningTemperature: 350
PowerUse: 100
- type: Sprite
sprite: Objects/Power/light_tube.rsi
state: normal
- type: entity
parent: BaseLightbulb
name: sodium light tube
description: A high power high energy bulb for the depths of space. Salty.
id: SodiumLightTube
components:
- type: LightBulb
bulb: Tube
color: "#FFAF38"
lightEnergy: 4
lightRadius: 10
lightSoftness: 0.5
BurningTemperature: 350
PowerUse: 100
- type: Sprite - type: Sprite
sprite: Objects/Power/light_tube.rsi sprite: Objects/Power/light_tube.rsi
state: normal state: normal

View File

@@ -114,6 +114,30 @@
damage: damage:
types: types:
Heat: 20 Heat: 20
- type: entity
id: PoweredlightExterior
description: "A light fixture. Draws power and produces light when equipped with a light tube."
suffix: Exterior tube, Powered
parent: Poweredlight
components:
- type: PoweredLight
hasLampOnSpawn: ExteriorLightTube
damage:
types:
Heat: 20
- type: entity
id: PoweredlightSodium
description: "A light fixture. Draws power and produces light when equipped with a light tube."
suffix: Sodium tube, Powered
parent: Poweredlight
components:
- type: PoweredLight
hasLampOnSpawn: SodiumLightTube
damage:
types:
Heat: 20
- type: entity - type: entity
name: small light name: small light
@@ -200,4 +224,4 @@
hasLampOnSpawn: LightBulb hasLampOnSpawn: LightBulb
damage: damage:
types: types:
Heat: 20 Heat: 20