Led light brightness nerf + power increase (#6259)
This commit is contained in:
@@ -39,7 +39,7 @@ namespace Content.Server.Light.Components
|
||||
public float LightSoftness = 1;
|
||||
|
||||
[DataField("PowerUse")]
|
||||
public int PowerUse = 40;
|
||||
public int PowerUse = 60;
|
||||
|
||||
[DataField("breakSound")]
|
||||
public SoundSpecifier BreakSound = new SoundCollectionSpecifier("GlassBreak");
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
# TODO: Add description (1)
|
||||
- type: entity
|
||||
parent: BaseItem
|
||||
id: BaseLightbulb
|
||||
@@ -95,16 +94,53 @@
|
||||
- type: entity
|
||||
parent: BaseLightbulb
|
||||
name: led light tube
|
||||
description: A high power high energy bulb.
|
||||
id: LedLightTube
|
||||
components:
|
||||
- type: LightBulb
|
||||
bulb: Tube
|
||||
color: "#EEEEFF"
|
||||
lightEnergy: 4
|
||||
lightEnergy: 2.5
|
||||
lightRadius: 10
|
||||
lightSoftness: 0.9
|
||||
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
|
||||
sprite: Objects/Power/light_tube.rsi
|
||||
state: normal
|
||||
|
||||
@@ -115,6 +115,30 @@
|
||||
types:
|
||||
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
|
||||
name: small light
|
||||
description: "An unpowered light."
|
||||
|
||||
Reference in New Issue
Block a user