Adds coal (#22559)
* Adds coal * Fix stack splitting spawn * Convert size * Ahhh, it's a reagent tooo.... * ore.rsi * Adjust recipes, add reagent extraction * solution name * Adjust reagents to prevent reactions * Adjust reagents for standard of 10u --------- Co-authored-by: Jeff <velcroboy333@hotmail.com>
This commit is contained in:
@@ -24,6 +24,7 @@ materials-bananium = bananium
|
|||||||
materials-meat = meat
|
materials-meat = meat
|
||||||
materials-web = silk
|
materials-web = silk
|
||||||
materials-bones = bone
|
materials-bones = bone
|
||||||
|
materials-coal = coal
|
||||||
|
|
||||||
# Material Reclaimer
|
# Material Reclaimer
|
||||||
material-reclaimer-upgrade-process-rate = process rate
|
material-reclaimer-upgrade-process-rate = process rate
|
||||||
|
|||||||
@@ -330,6 +330,8 @@
|
|||||||
orGroup: GiftPool
|
orGroup: GiftPool
|
||||||
- id: Ash
|
- id: Ash
|
||||||
orGroup: GiftPool
|
orGroup: GiftPool
|
||||||
|
- id: Coal1
|
||||||
|
orGroup: GiftPool
|
||||||
- id: MiningDrill
|
- id: MiningDrill
|
||||||
orGroup: GiftPool
|
orGroup: GiftPool
|
||||||
- id: CowToolboxFilled
|
- id: CowToolboxFilled
|
||||||
|
|||||||
@@ -195,3 +195,42 @@
|
|||||||
components:
|
components:
|
||||||
- type: Stack
|
- type: Stack
|
||||||
count: 1
|
count: 1
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
parent: OreBase
|
||||||
|
id: Coal
|
||||||
|
name: coal
|
||||||
|
suffix: Full
|
||||||
|
components:
|
||||||
|
- type: Stack
|
||||||
|
stackType: Coal
|
||||||
|
- type: Sprite
|
||||||
|
state: coal
|
||||||
|
- type: Material
|
||||||
|
- type: Extractable
|
||||||
|
grindableSolutionName: coal
|
||||||
|
- type: SolutionContainerManager
|
||||||
|
solutions:
|
||||||
|
coal:
|
||||||
|
reagents:
|
||||||
|
- ReagentId: Carbon
|
||||||
|
Quantity: 8.4
|
||||||
|
- ReagentId: Ammonia
|
||||||
|
Quantity: 0.8
|
||||||
|
- ReagentId: Hydrogen
|
||||||
|
Quantity: 0.5
|
||||||
|
- ReagentId: Sulfur
|
||||||
|
Quantity: 0.2
|
||||||
|
- ReagentId: Mercury
|
||||||
|
Quantity: 0.1
|
||||||
|
- type: PhysicalComposition
|
||||||
|
materialComposition:
|
||||||
|
Coal: 500
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
parent: Coal
|
||||||
|
id: Coal1
|
||||||
|
suffix: Single
|
||||||
|
components:
|
||||||
|
- type: Stack
|
||||||
|
count: 1
|
||||||
|
|||||||
@@ -107,3 +107,11 @@
|
|||||||
icon: { sprite: Objects/Materials/materials.rsi, state: bones }
|
icon: { sprite: Objects/Materials/materials.rsi, state: bones }
|
||||||
color: "#896f5e"
|
color: "#896f5e"
|
||||||
price: 0
|
price: 0
|
||||||
|
|
||||||
|
- type: material
|
||||||
|
id: Coal
|
||||||
|
name: materials-coal
|
||||||
|
unit: materials-unit-piece
|
||||||
|
icon: { sprite: Objects/Materials/ore.rsi, state: coal }
|
||||||
|
color: "#404040"
|
||||||
|
price: 0
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
completetime: 2
|
completetime: 2
|
||||||
materials:
|
materials:
|
||||||
Steel: 3000
|
Steel: 3000
|
||||||
|
Coal: 1000
|
||||||
|
|
||||||
- type: latheRecipe
|
- type: latheRecipe
|
||||||
id: SheetGlass1
|
id: SheetGlass1
|
||||||
@@ -75,14 +76,14 @@
|
|||||||
completetime: 2
|
completetime: 2
|
||||||
materials:
|
materials:
|
||||||
Uranium: 3000
|
Uranium: 3000
|
||||||
|
|
||||||
- type: latheRecipe
|
- type: latheRecipe
|
||||||
id: IngotGold30
|
id: IngotGold30
|
||||||
result: IngotGold
|
result: IngotGold
|
||||||
completetime: 2
|
completetime: 2
|
||||||
materials:
|
materials:
|
||||||
Gold: 3000
|
Gold: 3000
|
||||||
|
|
||||||
- type: latheRecipe
|
- type: latheRecipe
|
||||||
id: IngotSilver30
|
id: IngotSilver30
|
||||||
result: IngotSilver
|
result: IngotSilver
|
||||||
@@ -96,7 +97,7 @@
|
|||||||
completetime: 2
|
completetime: 2
|
||||||
materials:
|
materials:
|
||||||
Bananium: 3000
|
Bananium: 3000
|
||||||
|
|
||||||
- type: latheRecipe
|
- type: latheRecipe
|
||||||
id: SheetUranium1
|
id: SheetUranium1
|
||||||
result: SheetUranium1
|
result: SheetUranium1
|
||||||
|
|||||||
@@ -54,3 +54,11 @@
|
|||||||
spawn: BananiumOre1
|
spawn: BananiumOre1
|
||||||
maxCount: 30
|
maxCount: 30
|
||||||
itemSize: 2
|
itemSize: 2
|
||||||
|
|
||||||
|
- type: stack
|
||||||
|
id: Coal
|
||||||
|
name: coal
|
||||||
|
icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: coal }
|
||||||
|
spawn: Coal1
|
||||||
|
maxCount: 30
|
||||||
|
itemSize: 2
|
||||||
|
|||||||
@@ -14,6 +14,10 @@
|
|||||||
id: OreSpaceQuartz
|
id: OreSpaceQuartz
|
||||||
oreEntity: SpaceQuartz1
|
oreEntity: SpaceQuartz1
|
||||||
|
|
||||||
|
- type: ore
|
||||||
|
id: OreCoal
|
||||||
|
oreEntity: Coal1
|
||||||
|
|
||||||
# Medium yields
|
# Medium yields
|
||||||
- type: ore
|
- type: ore
|
||||||
id: OreGold
|
id: OreGold
|
||||||
@@ -62,6 +66,7 @@
|
|||||||
id: RandomOreDistributionStandard
|
id: RandomOreDistributionStandard
|
||||||
weights:
|
weights:
|
||||||
OreSteel: 10
|
OreSteel: 10
|
||||||
|
OreCoal: 10
|
||||||
OreSpaceQuartz: 8
|
OreSpaceQuartz: 8
|
||||||
OreGold: 2
|
OreGold: 2
|
||||||
OrePlasma: 4
|
OrePlasma: 4
|
||||||
|
|||||||
Reference in New Issue
Block a user