Skip to content

Commit 99e0d2c

Browse files
Merge branch 'master' into Hotdog
2 parents 63ca9c2 + aebf49a commit 99e0d2c

File tree

26 files changed

+588
-26
lines changed

26 files changed

+588
-26
lines changed

Resources/Changelog/Frontier.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5024,3 +5024,12 @@ Entries:
50245024
id: 6257
50255025
time: '2025-08-23T00:31:16.0000000+00:00'
50265026
url: https://github.com/new-frontiers-14/frontier-station-14/pull/3823
5027+
- author: dustylens
5028+
changes:
5029+
- type: Add
5030+
message: >-
5031+
Rice dough and rice dough slices added for noodle production. Also mochi
5032+
treats can be made!
5033+
id: 6258
5034+
time: '2025-08-23T18:41:26.0000000+00:00'
5035+
url: https://github.com/new-frontiers-14/frontier-station-14/pull/3816

Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/frozen.yml

Lines changed: 238 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,241 @@
2323
- sweet
2424
- icecream
2525
- licorice
26+
27+
- type: entity
28+
name: mochi
29+
parent: FoodFrozenBase
30+
id: FoodFrozenMochi
31+
description: A delicious blorb of chewey sticky rice encapsulating a core of ice cream. Tasty!
32+
components:
33+
- type: Sprite
34+
sprite: _NF/Objects/Consumable/Food/frozen.rsi
35+
layers:
36+
- state: mochi
37+
- type: Food
38+
- type: SolutionContainerManager
39+
solutions:
40+
food:
41+
maxVol: 20
42+
reagents:
43+
- ReagentId: Nutriment
44+
Quantity: 5
45+
- ReagentId: Sugar
46+
Quantity: 5
47+
- type: FlavorProfile
48+
flavors:
49+
- rice
50+
- icecream
51+
- sweet
52+
53+
- type: entity
54+
name: bungo mochi
55+
parent: FoodFrozenBase
56+
id: FoodFrozenMochiBungo
57+
description: A delicious blorb of chewey sticky rice encapsulating a core of ice cream. It's bungo flavored!
58+
components:
59+
- type: Sprite
60+
sprite: _NF/Objects/Consumable/Food/frozen.rsi
61+
layers:
62+
- state: bungomochi
63+
- type: Food
64+
- type: SolutionContainerManager
65+
solutions:
66+
food:
67+
maxVol: 20
68+
reagents:
69+
- ReagentId: Nutriment
70+
Quantity: 5
71+
- ReagentId: Sugar
72+
Quantity: 5
73+
- type: FlavorProfile
74+
flavors:
75+
- rice
76+
- icecream
77+
- bungo
78+
79+
- type: entity
80+
name: cherry mochi
81+
parent: FoodFrozenBase
82+
id: FoodFrozenMochiCherry
83+
description: A delicious blorb of chewey sticky rice encapsulating a core of ice cream. It's cherry flavored!
84+
components:
85+
- type: Sprite
86+
sprite: _NF/Objects/Consumable/Food/frozen.rsi
87+
layers:
88+
- state: cherrymochi
89+
- type: Food
90+
- type: SolutionContainerManager
91+
solutions:
92+
food:
93+
maxVol: 20
94+
reagents:
95+
- ReagentId: Nutriment
96+
Quantity: 5
97+
- ReagentId: Sugar
98+
Quantity: 5
99+
- type: FlavorProfile
100+
flavors:
101+
- rice
102+
- icecream
103+
- cherry
104+
105+
- type: entity
106+
name: chocolate mochi
107+
parent: FoodFrozenBase
108+
id: FoodFrozenMochiChocolate
109+
description: A delicious blorb of chewey sticky rice encapsulating a core of ice cream. It's chocolate flavored!
110+
components:
111+
- type: Sprite
112+
sprite: _NF/Objects/Consumable/Food/frozen.rsi
113+
layers:
114+
- state: chocomochi
115+
- type: Food
116+
- type: SolutionContainerManager
117+
solutions:
118+
food:
119+
maxVol: 20
120+
reagents:
121+
- ReagentId: Nutriment
122+
Quantity: 5
123+
- ReagentId: Sugar
124+
Quantity: 5
125+
- type: FlavorProfile
126+
flavors:
127+
- rice
128+
- icecream
129+
- chocolate
130+
131+
- type: entity
132+
name: fiber mochi
133+
parent: FoodFrozenBase
134+
id: FoodFrozenMochiFiber
135+
description: A delicious blorb of chewey sticky rice encapsulating a core of ice cream. It's woven with fiber!
136+
components:
137+
- type: Sprite
138+
sprite: _NF/Objects/Consumable/Food/frozen.rsi
139+
layers:
140+
- state: fibermochi
141+
- type: Food
142+
- type: SolutionContainerManager
143+
solutions:
144+
food:
145+
maxVol: 20
146+
reagents:
147+
- ReagentId: Nutriment
148+
Quantity: 4
149+
- ReagentId: Sugar
150+
Quantity: 4
151+
- ReagentId: Fiber
152+
Quantity: 2
153+
- type: FlavorProfile
154+
flavors:
155+
- rice
156+
- icecream
157+
- fiber
158+
159+
- type: entity
160+
name: rosy mochi
161+
parent: FoodFrozenBase
162+
id: FoodFrozenMochiMoth
163+
description: A delicious blorb of chewey sticky rice encapsulating a core of ice cream. It's almost too cute to eat! Almost.
164+
components:
165+
- type: Sprite
166+
sprite: _NF/Objects/Consumable/Food/frozen.rsi
167+
layers:
168+
- state: mothmochi
169+
- type: Food
170+
- type: SolutionContainerManager
171+
solutions:
172+
food:
173+
maxVol: 20
174+
reagents:
175+
- ReagentId: Nutriment
176+
Quantity: 5
177+
- ReagentId: Sugar
178+
Quantity: 5
179+
- type: FlavorProfile
180+
flavors:
181+
- rice
182+
- icecream
183+
- pink
184+
185+
- type: entity
186+
name: cinnamon mochi
187+
parent: FoodFrozenBase
188+
id: FoodFrozenMochiSpice
189+
description: A delicious blorb of chewey sticky rice encapsulating a core of ice cream. It's spicy! Is that cinnamon?
190+
components:
191+
- type: Sprite
192+
sprite: _NF/Objects/Consumable/Food/frozen.rsi
193+
layers:
194+
- state: spicemochi
195+
- type: Food
196+
- type: SolutionContainerManager
197+
solutions:
198+
food:
199+
maxVol: 20
200+
reagents:
201+
- ReagentId: Nutriment
202+
Quantity: 5
203+
- ReagentId: Sugar
204+
Quantity: 5
205+
- type: FlavorProfile
206+
flavors:
207+
- rice
208+
- icecream
209+
- cinnamon
210+
211+
- type: entity
212+
name: tea mochi
213+
parent: FoodFrozenBase
214+
id: FoodFrozenMochiTea
215+
description: A delicious blorb of chewey sticky rice encapsulating a core of ice cream. It's infused with tea!
216+
components:
217+
- type: Sprite
218+
sprite: _NF/Objects/Consumable/Food/frozen.rsi
219+
layers:
220+
- state: teamochi
221+
- type: Food
222+
- type: SolutionContainerManager
223+
solutions:
224+
food:
225+
maxVol: 20
226+
reagents:
227+
- ReagentId: Nutriment
228+
Quantity: 5
229+
- ReagentId: Sugar
230+
Quantity: 5
231+
- type: FlavorProfile
232+
flavors:
233+
- rice
234+
- icecream
235+
- tea
236+
237+
- type: entity
238+
name: ube mochi
239+
parent: FoodFrozenBase
240+
id: FoodFrozenMochiUbe
241+
description: A delicious blorb of chewey sticky rice encapsulating a core of ice cream. You're not sure if it's really ube.
242+
components:
243+
- type: Sprite
244+
sprite: _NF/Objects/Consumable/Food/frozen.rsi
245+
layers:
246+
- state: ubemochi
247+
- type: Food
248+
- type: SolutionContainerManager
249+
solutions:
250+
food:
251+
maxVol: 20
252+
reagents:
253+
- ReagentId: Nutriment
254+
Quantity: 4
255+
- ReagentId: Sugar
256+
Quantity: 4
257+
- ReagentId: PolypyryliumOligomers
258+
Quantity: 2
259+
- type: FlavorProfile
260+
flavors:
261+
- rice
262+
- icecream
263+
- antiseptic

Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/ingredients.yml

Lines changed: 50 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@
269269
sprite: _NF/Objects/Consumable/Food/ingredients.rsi
270270
state: rice-noodle-sheet
271271
- type: SliceableFood
272-
count: 3
272+
count: 4
273273
slice: FoodRiceNoodles
274274
- type: Tag
275275
tags:
@@ -280,7 +280,7 @@
280280
maxVol: 65 # it's a bunch of raw rice. How sad to eat this.
281281
reagents:
282282
- ReagentId: Rice
283-
Quantity: 45
283+
Quantity: 40
284284
- ReagentId: TableSalt
285285
Quantity: 10
286286
- ReagentId: Cornoil
@@ -298,14 +298,57 @@
298298
- type: SolutionContainerManager
299299
solutions:
300300
food:
301-
maxVol: 21
301+
maxVol: 20
302302
reagents:
303303
- ReagentId: Rice
304-
Quantity: 15
304+
Quantity: 10
305305
- ReagentId: TableSalt
306-
Quantity: 3
306+
Quantity: 2
307307
- ReagentId: Cornoil
308-
Quantity: 3
308+
Quantity: 2
309+
310+
- type: entity
311+
name: rice dough
312+
parent: FoodBakingBase
313+
id: FoodRiceDough
314+
description: You're pretty sure this is just rice and water. You have no idea how it's holding together.
315+
components:
316+
- type: FlavorProfile
317+
flavors:
318+
- rice
319+
- type: Sprite
320+
sprite: _NF/Objects/Consumable/Food/ingredients.rsi
321+
state: rice-dough
322+
- type: SliceableFood
323+
count: 4
324+
slice: FoodRiceDoughSlice
325+
- type: SolutionContainerManager
326+
solutions:
327+
food:
328+
maxVol: 65 # it's a bunch of raw rice. How sad to eat this.
329+
reagents:
330+
- ReagentId: Rice
331+
Quantity: 40
332+
333+
- type: entity
334+
name: rice dough slice
335+
parent: FoodBakingBase
336+
id: FoodRiceDoughSlice
337+
description: A slice of rice dough.
338+
components:
339+
- type: FlavorProfile
340+
flavors:
341+
- rice
342+
- type: Sprite
343+
sprite: _NF/Objects/Consumable/Food/ingredients.rsi
344+
state: rice-dough-slice
345+
- type: SolutionContainerManager
346+
solutions:
347+
food:
348+
maxVol: 20
349+
reagents:
350+
- ReagentId: Rice
351+
Quantity: 10
309352

310353
- type: entity
311354
parent: FoodMeatBase
@@ -338,4 +381,4 @@
338381
state: sausagecasing
339382
- type: Construction
340383
graph: Cutlet
341-
node: casing
384+
node: casing

Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/meals.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@
400400
maxVol: 35
401401
reagents:
402402
- ReagentId: Nutriment
403-
Quantity: 15
403+
Quantity: 10
404404
- ReagentId: Flavorol
405405
Quantity: 10
406406

@@ -426,7 +426,7 @@
426426
maxVol: 35
427427
reagents:
428428
- ReagentId: Nutriment
429-
Quantity: 15
429+
Quantity: 10
430430
- ReagentId: Vitamin
431431
Quantity: 5
432432
- ReagentId: Flavorol
@@ -458,7 +458,7 @@
458458
maxVol: 35
459459
reagents:
460460
- ReagentId: Nutriment
461-
Quantity: 15
461+
Quantity: 10
462462
- ReagentId: Vitamin
463463
Quantity: 5
464464
- ReagentId: Flavorol
@@ -491,7 +491,7 @@
491491
maxVol: 35
492492
reagents:
493493
- ReagentId: Nutriment
494-
Quantity: 15
494+
Quantity: 10
495495
- ReagentId: Vitamin
496496
Quantity: 5
497497
- ReagentId: Flavorol
@@ -525,7 +525,7 @@
525525
maxVol: 35
526526
reagents:
527527
- ReagentId: Nutriment
528-
Quantity: 15
528+
Quantity: 10
529529
- ReagentId: Vitamin
530530
Quantity: 5
531531
- ReagentId: Flavorol
@@ -558,7 +558,7 @@
558558
maxVol: 35
559559
reagents:
560560
- ReagentId: Nutriment
561-
Quantity: 15
561+
Quantity: 10
562562
- ReagentId: Vitamin
563563
Quantity: 5
564564
- ReagentId: Flavorol

0 commit comments

Comments
 (0)