add: add colored armchairs (#190)

This commit is contained in:
ThereDrD0
2024-03-13 00:53:07 +03:00
committed by GitHub
parent eba54a3215
commit e42a3c40e8
2 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
ent-ComfyChairBlack = черное { ent-ComfyChair }
.desc = { ent-ComfyChair.desc } Это черное.
.suffix = черный
ent-ComfyChairBrown = коричневое { ent-ComfyChair }
.desc = { ent-ComfyChair.desc } Это коричневое.
.suffix = коричневый
ent-ComfyChairCommand = командное { ent-ComfyChair }
.desc = { ent-ComfyChair.desc } Это темно-синее.
.suffix = командный
ent-ComfyChairSecurity = охранное { ent-ComfyChair }
.desc = { ent-ComfyChair.desc } Это красное.
.suffix = Служба Безопасности
ent-ComfyChairMedical = медицинское { ent-ComfyChair }
.desc = { ent-ComfyChair.desc } Это голубое.
.suffix = медицинский
ent-ComfyChairEngineering = инженерное { ent-ComfyChair }
.desc = { ent-ComfyChair.desc } Это оранжевое.
.suffix = инженерный
ent-ComfyChairScience = научное { ent-ComfyChair }
.desc = { ent-ComfyChair.desc } Это фиолетовое.
.suffix = научный
ent-ComfyChairCargo = грузовое { ent-ComfyChair }
.desc = { ent-ComfyChair.desc } Это светло-коричневое.
.suffix = карго
ent-ComfyChairService = сервисное { ent-ComfyChair }
.desc = { ent-ComfyChair.desc } Это зеленое.
.suffix = сервис

View File

@@ -0,0 +1,82 @@
# black - #808080
# brown - #AE6716
# command - #4B709C
# security - #DE3A3A
# medical - #52B4E9
# engineering - #FFA647
# science - #F98AFF
# cargo - #D69949
# service - #9FED58
- type: entity
id: ComfyChairBlack
suffix: Black
parent: ComfyChair
components:
- type: Sprite
color: "#808080"
- type: entity
id: ComfyChairBrown
suffix: Brown
parent: ComfyChair
components:
- type: Sprite
color: "#AE6716"
- type: entity
id: ComfyChairCommand
suffix: Command
parent: ComfyChair
components:
- type: Sprite
color: "#4B709C"
- type: entity
id: ComfyChairSecurity
suffix: Security
parent: ComfyChair
components:
- type: Sprite
color: "#DE3A3A"
- type: entity
id: ComfyChairMedical
suffix: Medical
parent: ComfyChair
components:
- type: Sprite
color: "#52B4E9"
- type: entity
id: ComfyChairEngineering
suffix: Engineering
parent: ComfyChair
components:
- type: Sprite
color: "#FFA647"
- type: entity
id: ComfyChairScience
suffix: Science
parent: ComfyChair
components:
- type: Sprite
color: "#F98AFF"
- type: entity
id: ComfyChairCargo
suffix: Cargo
parent: ComfyChair
components:
- type: Sprite
color: "#D69949"
- type: entity
id: ComfyChairService
suffix: Service
parent: ComfyChair
components:
- type: Sprite
color: "#9FED58"