Adds Colored Light Bulbs (#35333)

* goober

* changes parenting
This commit is contained in:
Boaz1111
2025-02-21 19:01:31 +01:00
committed by GitHub
parent b41a348ebf
commit 54bb2a31b7
3 changed files with 315 additions and 38 deletions

View File

@@ -118,3 +118,124 @@
doAfter: 1
- node: icon
entity: LightTubeCrystalGreen
- type: constructionGraph
id: CyanLightBulb
start: start
graph:
- node: start
edges:
- to: icon
steps:
- material: Glass
amount: 1
doAfter: 1
- tag: CrystalCyan
name: cyan crystal shard
icon:
sprite: Objects/Materials/Shards/crystal.rsi
state: shard1
color: #52ff39
doAfter: 1
- node: icon
entity: LightBulbCrystalCyan
- type: constructionGraph
id: BlueLightBulb
start: start
graph:
- node: start
edges:
- to: icon
steps:
- material: Glass
amount: 1
doAfter: 1
- tag: CrystalBlue
name: blue crystal shard
icon:
sprite: Objects/Materials/Shards/crystal.rsi
state: shard1
doAfter: 1
- node: icon
entity: LightBulbCrystalBlue
- type: constructionGraph
id: PinkLightBulb
start: start
graph:
- node: start
edges:
- to: icon
steps:
- material: Glass
amount: 1
doAfter: 1
- tag: CrystalPink
name: pink crystal shard
icon:
sprite: Objects/Materials/Shards/crystal.rsi
state: shard1
doAfter: 1
- node: icon
entity: LightBulbCrystalPink
- type: constructionGraph
id: OrangeLightBulb
start: start
graph:
- node: start
edges:
- to: icon
steps:
- material: Glass
amount: 1
doAfter: 1
- tag: CrystalOrange
name: orange crystal shard
icon:
sprite: Objects/Materials/Shards/crystal.rsi
state: shard1
doAfter: 1
- node: icon
entity: LightBulbCrystalOrange
- type: constructionGraph
id: RedLightBulb
start: start
graph:
- node: start
edges:
- to: icon
steps:
- material: Glass
amount: 1
doAfter: 1
- tag: CrystalRed
name: red crystal shard
icon:
sprite: Objects/Materials/Shards/crystal.rsi
state: shard1
doAfter: 1
- node: icon
entity: LightBulbCrystalRed
- type: constructionGraph
id: GreenLightBulb
start: start
graph:
- node: start
edges:
- to: icon
steps:
- material: Glass
amount: 1
doAfter: 1
- tag: CrystalGreen
name: green crystal shard
icon:
sprite: Objects/Materials/Shards/crystal.rsi
state: shard1
doAfter: 1
- node: icon
entity: LightBulbCrystalGreen

View File

@@ -5,7 +5,7 @@
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light tube containing a cyan crystal
description: A high powered light tube containing a cyan crystal.
icon: { sprite: Objects/Power/light_tube.rsi, state: normal }
objectType: Item
@@ -16,7 +16,7 @@
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light tube containing a blue crystal
description: A high powered light tube containing a blue crystal.
icon: { sprite: Objects/Power/light_tube.rsi, state: normal }
objectType: Item
@@ -27,7 +27,7 @@
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light tube containing a pink crystal
description: A high powered light tube containing a pink crystal.
icon: { sprite: Objects/Power/light_tube.rsi, state: normal }
objectType: Item
@@ -38,7 +38,7 @@
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light tube containing an orange crystal
description: A high powered light tube containing an orange crystal.
icon: { sprite: Objects/Power/light_tube.rsi, state: normal }
objectType: Item
@@ -49,7 +49,7 @@
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light tube containing a red crystal
description: A high powered light tube containing a red crystal.
icon: { sprite: Objects/Power/light_tube.rsi, state: normal }
objectType: Item
@@ -60,6 +60,72 @@
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light tube containing a green crystal
description: A high powered light tube containing a green crystal.
icon: { sprite: Objects/Power/light_tube.rsi, state: normal }
objectType: Item
- type: construction
name: cyan light bulb
id: CyanLightBulb
graph: CyanLightBulb
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light bulb containing a cyan crystal.
icon: { sprite: Objects/Power/light_bulb.rsi, state: normal }
objectType: Item
- type: construction
name: blue light bulb
id: BlueLightBulb
graph: BlueLightBulb
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light bulb containing a blue crystal.
icon: { sprite: Objects/Power/light_bulb.rsi, state: normal }
objectType: Item
- type: construction
name: pink light bulb
id: PinkLightBulb
graph: PinkLightBulb
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light bulb containing a pink crystal.
icon: { sprite: Objects/Power/light_bulb.rsi, state: normal }
objectType: Item
- type: construction
name: orange light bulb
id: OrangeLightBulb
graph: OrangeLightBulb
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light bulb containing an orange crystal.
icon: { sprite: Objects/Power/light_bulb.rsi, state: normal }
objectType: Item
- type: construction
name: red light bulb
id: RedLightBulb
graph: RedLightBulb
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light bulb containing a red crystal.
icon: { sprite: Objects/Power/light_bulb.rsi, state: normal }
objectType: Item
- type: construction
name: green light bulb
id: GreenLightBulb
graph: GreenLightBulb
startNode: start
targetNode: icon
category: construction-category-utilities
description: A high powered light bulb containing a green crystal.
icon: { sprite: Objects/Power/light_bulb.rsi, state: normal }
objectType: Item