Bogdan-G / LargerWorkbenches

でっかい作業台をつくりゅ

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LargerWorkbenches

3x3以上のCraftingができる作業台を追加するModです
This mod adds some workbenches which can do more than 3x3 crafting.


MineTweaker, CraftTweaker

レシピの追加 AddRecipe

  • 定型レシピ ShapedRecipe
    mods.larger_workbenches.LargeCrafting.addShaped(<output>, [[<input>, <input>...], [<input>, <input>...], [<input>, <input>...]...]);

  • tierを限定した定型レシピ only tier ShapedRecipe
    tier -1 = any tables, 0 = 4x4 table, 1 = 5x5 table, 2 = 6x6 table, 3 = 7x7 table, 4 = 8x8 table, 5 = 9x9 table
    mods.larger_workbenches.LargeCrafting.addShaped(tier, <output>, [[<input>, <input>...], [<input>, <input>...], [<input>, <input>...]...]);

  • 不定形レシピ ShapelessRecipe
    mods.larger_workbenches.LargeCrafting.addShapeless(<output>, [<input>, <input>...]);

  • tierを限定した不定形レシピ only tier ShapelessRecipe
    mods.larger_workbenches.LargeCrafting.addShapeless(tier, <output>, [<input>, <input>...]);

レシピの削除 RemoveRecipe

mods.larger_workbenches.LargeCrafting.remove(<output>);

About

でっかい作業台をつくりゅ