]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Add alternative crafting recipes for reinforced plasma/uranium glass (#22804)
authorMACMAN2003 <macman2003c@gmail.com>
Thu, 29 Feb 2024 22:57:18 +0000 (14:57 -0800)
committerGitHub <noreply@github.com>
Thu, 29 Feb 2024 22:57:18 +0000 (09:57 +1100)
* un-eviled the reinforced glass recipes

the tyranny of accidentally crafting plasma glass instead of reinforced plasma glass is finally over

* fix?

Resources/Prototypes/Recipes/Construction/Graphs/materials/glass.yml
Resources/Prototypes/Recipes/Construction/materials.yml

index a707dd154637d34353d8ce4c5570804d26f55987..654dd7bdf36eb54962db35df53607a1260bcccc3 100644 (file)
               amount: 1
             - material: MetalRod
               amount: 1
+        - to: SheetRPGlass0
+          completed:
+            - !type:SetStackCount
+              amount: 1
+          steps:
+            - material: PlasmaGlass
+              amount: 1
+            - material: MetalRod
+              amount: 1
+        - to: SheetRPGlass1
+          completed:
+            - !type:SetStackCount
+              amount: 1
+          steps:
+            - material: ReinforcedGlass
+              amount: 1
+            - material: Plasma
+              amount: 1
         - to: SheetUGlass
           completed:
             - !type:SetStackCount
               amount: 1
             - material: MetalRod
               amount: 1
-
+        - to: SheetRUGlass0
+          completed:
+            - !type:SetStackCount
+              amount: 1
+          steps:
+            - material: UraniumGlass
+              amount: 1
+            - material: MetalRod
+              amount: 1
+        - to: SheetRUGlass1
+          completed:
+            - !type:SetStackCount
+              amount: 1
+          steps:
+            - material: ReinforcedGlass
+              amount: 1
+            - material: Uranium
+              amount: 1
     - node: SheetGlass
       entity: SheetGlass
 
     - node: SheetRPGlass
       entity: SheetRPGlass
 
+    - node: SheetRPGlass0
+      entity: SheetRPGlass
+
+    - node: SheetRPGlass1
+      entity: SheetRPGlass
+
     - node: SheetUGlass
       entity: SheetUGlass
 
     - node: SheetRUGlass
       entity: SheetRUGlass
 
+    - node: SheetRUGlass0
+      entity: SheetRUGlass
+
+    - node: SheetRUGlass1
+      entity: SheetRUGlass
index a561803d3ad5d8e0d7ed6f2b410a5f4ab84b3a15..eea19c9c627fe7561242a7612bc35fc3ded363c5 100644 (file)
   icon: { sprite: Objects/Materials/Sheets/glass.rsi, state: rpglass }
   objectType: Item
 
+- type: construction
+  name: reinforced plasma glass
+  description: A reinforced sheet of translucent plasma.
+  id: SheetRPGlass0
+  graph: Glass
+  startNode: start
+  targetNode: SheetRPGlass0
+  category: construction-category-materials
+  icon: { sprite: Objects/Materials/Sheets/glass.rsi, state: rpglass }
+  objectType: Item
+
+- type: construction
+  name: reinforced plasma glass
+  description: A reinforced sheet of translucent plasma.
+  id: SheetRPGlass1
+  graph: Glass
+  startNode: start
+  targetNode: SheetRPGlass1
+  category: construction-category-materials
+  icon: { sprite: Objects/Materials/Sheets/glass.rsi, state: rpglass }
+  objectType: Item
+
 - type: construction
   name: durathread
   id: MaterialDurathread
   category: construction-category-materials
   icon: { sprite: Objects/Materials/Sheets/glass.rsi, state: ruglass }
   objectType: Item
+
+- type: construction
+  name: reinforced uranium glass
+  description: A reinforced sheet of uranium glass.
+  id: SheetRUGlass0
+  graph: Glass
+  startNode: start
+  targetNode: SheetRUGlass0
+  category: construction-category-materials
+  icon: { sprite: Objects/Materials/Sheets/glass.rsi, state: ruglass }
+  objectType: Item
+
+- type: construction
+  name: reinforced uranium glass
+  description: A reinforced sheet of uranium glass.
+  id: SheetRUGlass1
+  graph: Glass
+  startNode: start
+  targetNode: SheetRUGlass1
+  category: construction-category-materials
+  icon: { sprite: Objects/Materials/Sheets/glass.rsi, state: ruglass }
+  objectType: Item
\ No newline at end of file