From 2afd7df117881655bb79ae65c33e034f94f03b08 Mon Sep 17 00:00:00 2001 From: Ed Date: Thu, 10 Apr 2025 22:40:15 +0300 Subject: [PATCH] Create rocks.yml --- .../Entities/Objects/Materials/rocks.yml | 87 +++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 Resources/Prototypes/_CP14/Entities/Objects/Materials/rocks.yml diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Materials/rocks.yml b/Resources/Prototypes/_CP14/Entities/Objects/Materials/rocks.yml new file mode 100644 index 0000000000..e878828b96 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Materials/rocks.yml @@ -0,0 +1,87 @@ +- type: entity + id: CP14DirtBlock1 + parent: BaseItem + name: dirt block + description: A block of excellent black soil. + categories: [ ForkFiltered ] + components: + - type: Item + size: Normal + - type: Sprite + noRot: true + sprite: _CP14/Objects/Materials/dirt_block.rsi + layers: + - state: dirt + map: ["base"] + - type: FloorTile + placeTileSound: + collection: CP14Digging + params: + variation: 0.03 + volume: 2 + outputs: + - CP14FloorDirt + - type: Appearance + - type: Stack + stackType: CP14Dirt + count: 1 + baseLayer: base + layerStates: + - dirt + - dirt_2 + - dirt_3 + - type: Material + - type: PhysicalComposition # точно ли это нужно? + materialComposition: + CP14Dirt: 100 + - type: CP14MagicEssenceContainer + essences: + Earth: 1 + +- type: entity + id: CP14DirtBlock10 + parent: CP14DirtBlock1 + suffix: 10 + components: + - type: Stack + count: 10 + +- type: entity + id: CP14StoneBlock1 + parent: BaseItem + name: stone block + description: A block of cold stone. + categories: [ ForkFiltered ] + components: + - type: Item + size: Normal + - type: Sprite + noRot: true + sprite: _CP14/Objects/Materials/stone_block.rsi + layers: + - state: stone + map: ["base"] + - type: Appearance + - type: Stack + stackType: CP14Stone + count: 1 + baseLayer: base + layerStates: + - stone + - stone_2 + - stone_3 + - type: Material + - type: PhysicalComposition # точно ли это нужно? + materialComposition: + CP14Stone: 100 + - type: CP14MagicEssenceContainer + essences: + Earth: 1 + +- type: entity + id: CP14StoneBlock10 + parent: CP14StoneBlock1 + suffix: 10 + components: + - type: Stack + count: 10 \ No newline at end of file