mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-28 10:12:41 +00:00
17 lines
505 B
Plaintext
17 lines
505 B
Plaintext
// Emits light forever with magic. Useful for mood lighting in Points of Interest.
|
|
// Be sure to check how it looks ingame, and fiddle with the settings until it looks right.
|
|
/obj/effect/map_effect/perma_light
|
|
name = "permanent light"
|
|
icon_state = "permalight"
|
|
|
|
light_range = 3
|
|
light_power = 1
|
|
light_color = "#FFFFFF"
|
|
|
|
/obj/effect/map_effect/perma_light/brighter
|
|
name = "permanent light (bright)"
|
|
icon_state = "permalight"
|
|
|
|
light_range = 5
|
|
light_power = 3
|
|
light_color = "#FFFFFF" |