• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

First Machine Age's Mods (Combined repo.)


Commit MetaInfo

Revisão59539600535f9ec819cb0aea8d6580edd649d5ca (tree)
Hora2021-05-29 07:53:58
Autormelchior <melchior@user...>
Commitermelchior

Mensagem de Log

Added missing Crafting recipies, messages

Mudança Sumário

Diff

--- a/ConstructionSupport/ConstructionSupport.csproj
+++ b/ConstructionSupport/ConstructionSupport.csproj
@@ -118,6 +118,12 @@
118118 <None Include="assets\fma\lang\en.json">
119119 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
120120 </None>
121+ <None Include="assets\fma\recipes\grid\frames\deckwork_diag.json">
122+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
123+ </None>
124+ <None Include="assets\fma\recipes\grid\frames\scaffold.json">
125+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
126+ </None>
121127 </ItemGroup>
122128 <ItemGroup>
123129 <Folder Include="assets\" />
--- a/ConstructionSupport/assets/fma/lang/en.json
+++ b/ConstructionSupport/assets/fma/lang/en.json
@@ -8,6 +8,6 @@
88
99 "game:tabname-constructionsupport":"Construction",
1010
11- "constructionsupport:placefailure-surface_solid_diagonal": "Place against solid block or deck sides...not here.",
12- "constructionsupport:placefailure-surface_solid_horizontal":"Needs a Solid SIDE, to place this.",
11+ "game:placefailure-surface_solid_diagonal": "Place against deck sides...not here.",
12+ "game:placefailure-surface_solid_horizontal":"Needs a Solid SIDE, to place this.",
1313 }
--- /dev/null
+++ b/ConstructionSupport/assets/fma/recipes/grid/frames/deckwork_diag.json
@@ -0,0 +1,10 @@
1+{
2+ ingredientPattern: "_W_ _P_",
3+ ingredients: {
4+ "W": { type:"block", code:"game:plankslab-*"},
5+ "P": { type: "item", code: "game:plank-*", name: "wood", allowedVariants: ["birch", "oak", "maple", "pine", "acacia", "kapok", "aged"], quantity: 2 },
6+ },
7+ width: 3,
8+ height: 2,
9+ output: { type: "block", code: "deckwork_corner-ne", quantity: 1 }
10+}
\ No newline at end of file
--- a/ConstructionSupport/assets/fma/recipes/grid/frames/deckwork_horiz.json
+++ b/ConstructionSupport/assets/fma/recipes/grid/frames/deckwork_horiz.json
@@ -1,8 +1,8 @@
11 {
2- ingredientPattern: "PWP,SPS",
2+ ingredientPattern: "_W_ SPS",
33 ingredients: {
44 "W": { type:"block", code:"game:plankslab-*"},
5- "P": { type: "item", code: "game:plank-*", name: "wood", allowedVariants: ["birch", "oak", "maple", "pine", "acacia", "kapok", "aged"] },
5+ "P": { type: "item", code: "game:plank-*", name: "wood", allowedVariants: ["birch", "oak", "maple", "pine", "acacia", "kapok", "aged"], quantity: 2 },
66 "S": { type: "item", code: "game:stick", name: "stick" }
77 },
88 width: 3,
--- /dev/null
+++ b/ConstructionSupport/assets/fma/recipes/grid/frames/scaffold.json
@@ -0,0 +1,11 @@
1+{
2+ ingredientPattern: "BBB BRB BBB",
3+ ingredients: {
4+ "B": { type:"item", code:"game:bamboostakes" },
5+ "R": { type: "item", code: "game:rope", quantity: 2 },
6+ },
7+ width: 3,
8+ height: 3,
9+ output: { type: "block", code: "bamboo_scaffold-north", quantity: 3 }
10+}
11+