Adds more sources for sheet paper material (#21364)
* Moves sheetifier research unlock from civilian services to industrial * Makes wood insertable into the sheetifier and makes paper a lathable material * Adds a paper crate to the cargo catalog * Adds localizations
This commit is contained in:
@@ -18,6 +18,7 @@ materials-durathread = durathread
|
|||||||
materials-plasma = plasma
|
materials-plasma = plasma
|
||||||
materials-plastic = plastic
|
materials-plastic = plastic
|
||||||
materials-wood = wood
|
materials-wood = wood
|
||||||
|
materials-paper = paper
|
||||||
materials-uranium = uranium
|
materials-uranium = uranium
|
||||||
materials-bananium = bananium
|
materials-bananium = bananium
|
||||||
materials-meat = meat
|
materials-meat = meat
|
||||||
|
|||||||
@@ -19,6 +19,9 @@ ent-MaterialPlasma = { ent-CrateMaterialPlasma }
|
|||||||
ent-CardboardMaterial = { ent-CrateMaterialCardboard }
|
ent-CardboardMaterial = { ent-CrateMaterialCardboard }
|
||||||
.desc = { ent-CrateMaterialCardboard.desc }
|
.desc = { ent-CrateMaterialCardboard.desc }
|
||||||
|
|
||||||
|
ent-PaperMaterial = { ent-CrateMaterialPaper }
|
||||||
|
.desc = { ent-CrateMaterialPaper.desc }
|
||||||
|
|
||||||
ent-MaterialFuelTank = { ent-WeldingFuelTankFull }
|
ent-MaterialFuelTank = { ent-WeldingFuelTankFull }
|
||||||
.desc = { ent-WeldingFuelTankFull.desc }
|
.desc = { ent-WeldingFuelTankFull.desc }
|
||||||
|
|
||||||
|
|||||||
@@ -21,3 +21,6 @@ ent-CrateMaterialPlasma = Solid plasma crate
|
|||||||
|
|
||||||
ent-CrateMaterialCardboard = Cardboard crate
|
ent-CrateMaterialCardboard = Cardboard crate
|
||||||
.desc = 60 pieces of cardboard.
|
.desc = 60 pieces of cardboard.
|
||||||
|
|
||||||
|
ent-CrateMaterialPaper = Paper crate
|
||||||
|
.desc = 90 sheets of paper.
|
||||||
|
|||||||
@@ -68,6 +68,16 @@
|
|||||||
category: Materials
|
category: Materials
|
||||||
group: market
|
group: market
|
||||||
|
|
||||||
|
- type: cargoProduct
|
||||||
|
id: PaperMaterial
|
||||||
|
icon:
|
||||||
|
sprite: Objects/Materials/Sheets/other.rsi
|
||||||
|
state: paper_3
|
||||||
|
product: CrateMaterialPaper
|
||||||
|
cost: 1000
|
||||||
|
category: Materials
|
||||||
|
group: market
|
||||||
|
|
||||||
- type: cargoProduct
|
- type: cargoProduct
|
||||||
id: MaterialFuelTank
|
id: MaterialFuelTank
|
||||||
icon:
|
icon:
|
||||||
|
|||||||
@@ -70,6 +70,15 @@
|
|||||||
- id: MaterialCardboard
|
- id: MaterialCardboard
|
||||||
amount: 2
|
amount: 2
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: CrateMaterialPaper
|
||||||
|
parent: CrateGenericSteel
|
||||||
|
components:
|
||||||
|
- type: StorageFill
|
||||||
|
contents:
|
||||||
|
- id: SheetPaper
|
||||||
|
amount: 3
|
||||||
|
|
||||||
#- type: entity
|
#- type: entity
|
||||||
# id: CrateMaterialHFuelTank
|
# id: CrateMaterialHFuelTank
|
||||||
# name: fueltank crate
|
# name: fueltank crate
|
||||||
|
|||||||
@@ -37,6 +37,10 @@
|
|||||||
- paper
|
- paper
|
||||||
- paper_2
|
- paper_2
|
||||||
- paper_3
|
- paper_3
|
||||||
|
- type: Material
|
||||||
|
- type: PhysicalComposition
|
||||||
|
materialComposition:
|
||||||
|
Paper: 100
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
state: paper_3
|
state: paper_3
|
||||||
layers:
|
layers:
|
||||||
|
|||||||
@@ -223,6 +223,11 @@
|
|||||||
- type: Appearance
|
- type: Appearance
|
||||||
- type: Item
|
- type: Item
|
||||||
heldPrefix: wood
|
heldPrefix: wood
|
||||||
|
- type: Tag
|
||||||
|
tags:
|
||||||
|
- Wooden
|
||||||
|
- DroneUsable
|
||||||
|
- RawMaterial
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: MaterialWoodPlank
|
parent: MaterialWoodPlank
|
||||||
|
|||||||
@@ -887,9 +887,11 @@
|
|||||||
whitelist:
|
whitelist:
|
||||||
tags:
|
tags:
|
||||||
- Raw
|
- Raw
|
||||||
|
- Wooden
|
||||||
- type: Lathe
|
- type: Lathe
|
||||||
idleState: base_machine
|
idleState: base_machine
|
||||||
runningState: base_machine_processing
|
runningState: base_machine_processing
|
||||||
canEjectStoredMaterials: false
|
canEjectStoredMaterials: false
|
||||||
staticRecipes:
|
staticRecipes:
|
||||||
- MaterialSheetMeat
|
- MaterialSheetMeat
|
||||||
|
- SheetPaper
|
||||||
|
|||||||
@@ -34,6 +34,14 @@
|
|||||||
color: "#8291a1"
|
color: "#8291a1"
|
||||||
price: 0.15 # 1-1 mix of plastic and cloth.
|
price: 0.15 # 1-1 mix of plastic and cloth.
|
||||||
|
|
||||||
|
- type: material
|
||||||
|
id: Paper
|
||||||
|
stackEntity: SheetPaper1
|
||||||
|
name: materials-paper
|
||||||
|
icon: { sprite: Objects/Materials/Sheets/other.rsi, state: paper }
|
||||||
|
color: "#d9d9d9"
|
||||||
|
price: 0.05 #same as wood
|
||||||
|
|
||||||
- type: material
|
- type: material
|
||||||
id: Plasma
|
id: Plasma
|
||||||
stackEntity: SheetPlasma1
|
stackEntity: SheetPlasma1
|
||||||
|
|||||||
@@ -139,3 +139,10 @@
|
|||||||
completetime: 6.4
|
completetime: 6.4
|
||||||
materials:
|
materials:
|
||||||
Meaterial: 200
|
Meaterial: 200
|
||||||
|
|
||||||
|
- type: latheRecipe
|
||||||
|
id: SheetPaper
|
||||||
|
result: SheetPaper1
|
||||||
|
completetime: 1
|
||||||
|
materials:
|
||||||
|
Wood: 50
|
||||||
|
|||||||
@@ -157,7 +157,6 @@
|
|||||||
cost: 5000
|
cost: 5000
|
||||||
recipeUnlocks:
|
recipeUnlocks:
|
||||||
- FatExtractorMachineCircuitboard
|
- FatExtractorMachineCircuitboard
|
||||||
- SheetifierMachineCircuitboard
|
|
||||||
|
|
||||||
- type: technology
|
- type: technology
|
||||||
id: HONKMech
|
id: HONKMech
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Tier 1
|
# Tier 1
|
||||||
|
|
||||||
- type: technology
|
- type: technology
|
||||||
id: SalvageEquipment
|
id: SalvageEquipment
|
||||||
@@ -54,6 +54,7 @@
|
|||||||
- AutolatheMachineCircuitboard
|
- AutolatheMachineCircuitboard
|
||||||
- CircuitImprinterMachineCircuitboard
|
- CircuitImprinterMachineCircuitboard
|
||||||
- MaterialReclaimerMachineCircuitboard
|
- MaterialReclaimerMachineCircuitboard
|
||||||
|
- SheetifierMachineCircuitboard
|
||||||
|
|
||||||
- type: technology
|
- type: technology
|
||||||
id: PowerGeneration
|
id: PowerGeneration
|
||||||
|
|||||||
Reference in New Issue
Block a user