Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@
- CargoBoardsStatic
- MedicalBoardsStatic
- EngineeringBoardsStatic
- DenBoardsStatic # DEN
dynamicPacks:
- EngineeringBoards
- CargoBoards
Expand Down
27 changes: 27 additions & 0 deletions Resources/Prototypes/_DEN/Entities/Clothing/Hands/rings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
- type: entity
parent: GoldRingDiamond
id: GoldRingDiamondPrinted
components:
- type: StaticPrice
price: 300 # 20% of original

- type: entity
parent: SilverRingDiamond
id: SilverRingDiamondPrinted
components:
- type: StaticPrice
price: 280 # 20% of original

- type: entity
parent: GoldRingGem
id: GoldRingGemPrinted
components:
- type: StaticPrice
price: 300 # same price as gold diamond ring due to material costs

- type: entity
parent: SilverRingGem
id: SilverRingGemPrinted
components:
- type: StaticPrice
price: 280 # same price as silver diamond ring due to material costs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- type: entity
id: AutotailorMachineCircuitboard
parent: BaseMachineCircuitboard
name: autotailor machine board
components:
- type: MachineBoard
prototype: Autotailor
stackRequirements:
Manipulator: 3
33 changes: 33 additions & 0 deletions Resources/Prototypes/_DEN/Entities/Structures/Machines/lathe.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
- type: entity
parent: BaseLathe
id: Autotailor
name: autotailor
description: Produces new, non-job specific clothing and accessories with the press of a button.
components:
- type: Transform
noRot: false
- type: Sprite
sprite: Structures/Machines/uniform_printer.rsi # TODO: Sprites
snapCardinals: false
layers:
- state: icon
map: ["enum.LatheVisualLayers.IsRunning"]
- type: Machine
board: AutotailorMachineCircuitboard
- type: Lathe
producingSound: /Audio/Machines/uniformprinter.ogg
idleState: icon
runningState: building
staticPacks:
- DenAutotailorStatic
# TODO: Uncomment when emagged recipes are added
# - type: EmagLatheRecipes
# emagStaticPacks:
# - DenAutotailorEmagStatic
- type: MaterialStorage
whitelist: &StandardMaterialWhitelist
tags:
- Sheet
- RawMaterial
- Ingot
- type: OreSiloClient
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- type: latheRecipePack
id: DenBoardsStatic
recipes:
- AutotailorMachineCircuitboard
Loading
Loading