Added missing Crafting recipies, messages

This commit is contained in:
melchior 2021-05-28 18:53:58 -04:00
parent 1c921954db
commit 5953960053
5 changed files with 31 additions and 4 deletions

View file

@ -118,6 +118,12 @@
<None Include="assets\fma\lang\en.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="assets\fma\recipes\grid\frames\deckwork_diag.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="assets\fma\recipes\grid\frames\scaffold.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="assets\" />

View file

@ -8,6 +8,6 @@
"game:tabname-constructionsupport":"Construction",
"constructionsupport:placefailure-surface_solid_diagonal": "Place against solid block or deck sides...not here.",
"constructionsupport:placefailure-surface_solid_horizontal":"Needs a Solid SIDE, to place this.",
"game:placefailure-surface_solid_diagonal": "Place against deck sides...not here.",
"game:placefailure-surface_solid_horizontal":"Needs a Solid SIDE, to place this.",
}

View file

@ -0,0 +1,10 @@
{
ingredientPattern: "_W_ _P_",
ingredients: {
"W": { type:"block", code:"game:plankslab-*"},
"P": { type: "item", code: "game:plank-*", name: "wood", allowedVariants: ["birch", "oak", "maple", "pine", "acacia", "kapok", "aged"], quantity: 2 },
},
width: 3,
height: 2,
output: { type: "block", code: "deckwork_corner-ne", quantity: 1 }
}

View file

@ -1,8 +1,8 @@
{
ingredientPattern: "PWP,SPS",
ingredientPattern: "_W_ SPS",
ingredients: {
"W": { type:"block", code:"game:plankslab-*"},
"P": { type: "item", code: "game:plank-*", name: "wood", allowedVariants: ["birch", "oak", "maple", "pine", "acacia", "kapok", "aged"] },
"P": { type: "item", code: "game:plank-*", name: "wood", allowedVariants: ["birch", "oak", "maple", "pine", "acacia", "kapok", "aged"], quantity: 2 },
"S": { type: "item", code: "game:stick", name: "stick" }
},
width: 3,

View file

@ -0,0 +1,11 @@
{
ingredientPattern: "BBB BRB BBB",
ingredients: {
"B": { type:"item", code:"game:bamboostakes" },
"R": { type: "item", code: "game:rope", quantity: 2 },
},
width: 3,
height: 3,
output: { type: "block", code: "bamboo_scaffold-north", quantity: 3 }
}