First Machine Age's Mods (Combined repo.)
Revisão | 59539600535f9ec819cb0aea8d6580edd649d5ca (tree) |
---|---|
Hora | 2021-05-29 07:53:58 |
Autor | melchior <melchior@user...> |
Commiter | melchior |
Added missing Crafting recipies, messages
@@ -118,6 +118,12 @@ | ||
118 | 118 | <None Include="assets\fma\lang\en.json"> |
119 | 119 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
120 | 120 | </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> | |
121 | 127 | </ItemGroup> |
122 | 128 | <ItemGroup> |
123 | 129 | <Folder Include="assets\" /> |
@@ -8,6 +8,6 @@ | ||
8 | 8 | |
9 | 9 | "game:tabname-constructionsupport":"Construction", |
10 | 10 | |
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.", | |
13 | 13 | } |
@@ -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 |
@@ -1,8 +1,8 @@ | ||
1 | 1 | { |
2 | - ingredientPattern: "PWP,SPS", | |
2 | + ingredientPattern: "_W_ SPS", | |
3 | 3 | ingredients: { |
4 | 4 | "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 }, | |
6 | 6 | "S": { type: "item", code: "game:stick", name: "stick" } |
7 | 7 | }, |
8 | 8 | width: 3, |
@@ -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 | + |