Minecraft Wiki
編集の要約なし
(一部翻訳)
1行目: 1行目:
 
{{documentation header}}
 
{{documentation header}}
 
{{lua|UI}}
 
{{lua|UI}}
  +
このテンプレートは、[[かまど]]と同様の外観のインターフェースを作成するためのものです。
This template is used to create a grid that looks similar to the [[Furnace|Furnace's]] GUI screen.
 
   
  +
このページでは、追加・変更された機能について解説を行っているため、基本的なスロットの使用法については[[テンプレート:Inventory slot]]を参照してください。
See [[Template:Grid]] for basic grid usage, this documentation page will cover additional or different functions.
 
== Usage ==
+
== 使用法 ==
   
=== Definition ===
+
=== 定義 ===
 
<pre style="max-width: 246px">{{Furnace
 
<pre style="max-width: 246px">{{Furnace
 
|Mod = Default mod name
 
|Mod = Default mod name
15行目: 15行目:
 
</pre>
 
</pre>
   
=== Standard usage ===
+
=== 標準的な使用法 ===
   
 
<pre style="max-width: 128px">{{Furnace
 
<pre style="max-width: 128px">{{Furnace
23行目: 23行目:
 
}}</pre>
 
}}</pre>
   
  +
;結果:
;produces:
 
 
{{Furnace
 
{{Furnace
 
|Input= Sand,17
 
|Input= Sand,17
30行目: 30行目:
 
}}
 
}}
   
  +
=== アニメーション ===
See the [[#Available images|image list]] below for all usable image names.
 
  +
スロットに表示したいアイテムをセミコロン区切りで記述することで、アニメーションで表示されます。
 
=== Animated ===
 
To make the grid animate, you make a list of blocks and objects you want to show, separated by semicolons.
 
 
<pre style="max-width: 232px">{{Furnace
 
<pre style="max-width: 232px">{{Furnace
|Input= Sand,17; Oak Wood,10
+
|Input= Sand,17; Oak Log,10
 
|Output= Glass,2; Charcoal,10
 
|Output= Glass,2; Charcoal,10
 
|Fuel= Coal,3
 
|Fuel= Coal,3
 
}}</pre>
 
}}</pre>
   
  +
;結果:
;produces:
 
 
{{Furnace
 
{{Furnace
|Input= Sand,17; Oak Wood,10
+
|Input= Sand,17; Oak Log,10
 
|Output= Glass,2; Charcoal,10
 
|Output= Glass,2; Charcoal,10
 
|Fuel= Coal,3
 
|Fuel= Coal,3
 
}}
 
}}
   
=== Mods ===
+
=== Mod ===
Mod images and normal images can be combined just like in a single grid.
+
Mod images and normal images can be combined just like in a single slot. However, [https://ftb.gamepedia.com/Feed_The_Beast_Wiki:Minecraft_Wiki_exportation_project since all mod pages are in the process of being exported to the FTB Wiki,] this function is not recommended.
  +
<!--
 
 
When uploading mod images, they must have the mod page name in parenthesis at the end. For example Fancystone (FancyPack).
 
When uploading mod images, they must have the mod page name in parenthesis at the end. For example Fancystone (FancyPack).
   
77行目: 75行目:
 
The layout images can also be modified, for example:
 
The layout images can also be modified, for example:
 
<pre style="max-width: 282px">{{Furnace
 
<pre style="max-width: 282px">{{Furnace
|Mod= IndustrialCraft
+
|Mod= The Aether
|Input= Hydrated Coal Dust,12
+
|Input= Holystone
|Output= Compressed hyd Coalclump,4
+
|Output= Healing Stone
|Fuel= RE Battery (Charged)
+
|Fuel= Ambrosium Shard
|FuelUsage= Electricity
+
|FuelUsage= Transmute
|Progress= Compressor
+
|Progress= Transmute
 
}}</pre>
 
}}</pre>
  +
;Produces
 
 
{{Furnace
 
{{Furnace
|Mod= IndustrialCraft
+
|Mod= The Aether
|Input= Hydrated Coal Dust,12
+
|Input= Holystone
|Output= Compressed hyd Coalclump,4
+
|Output= Healing Stone
|Fuel= RE Battery (Charged)
+
|Fuel= Ambrosium Shard
|FuelUsage= Electricity
+
|FuelUsage= Transmute
|Progress= Compressor
+
|Progress= Transmute
 
}}
 
}}
 
 
Images should be put in [[:Category:Grid mods layout]].
 
Images should be put in [[:Category:Grid mods layout]].
  +
-->
 
  +
== 関連項目 ==
{{loadPage|Template:Grid/Available images|Available images}}
 
 
== See also ==
 
 
{{UI see also}}
 
{{UI see also}}
   
113行目: 108行目:
 
[[ru:Шаблон:Печка]]
 
[[ru:Шаблон:Печка]]
 
</includeonly>
 
</includeonly>
 
 
<noinclude>
 
<noinclude>
 
[[en:Template:Furnace/doc]]
 
[[en:Template:Furnace/doc]]

2019年10月15日 (火) 01:03時点における版

これは、メインテンプレートページに参照されるべきである解説ページです。詳細についてはテンプレート:Documentationを参照してください
Lua logo
このテンプレートは、モジュール:UIを使用しています。また、このスクリプトはLuaで書かれています。

このテンプレートは、かまどと同様の外観のインターフェースを作成するためのものです。

このページでは、追加・変更された機能について解説を行っているため、基本的なスロットの使用法についてはテンプレート:Inventory slotを参照してください。

使用法

定義

{{Furnace
|Mod    = Default mod name
|Input  = Mod:InputName,Amount
|Output = Mod:OutputName,Amount
|Fuel   = Mod:FuelName,Amount
}}

標準的な使用法

{{Furnace
|Input=  Sand,17
|Output= Glass,2
|Fuel=   Coal,3
}}
結果:

アニメーション

スロットに表示したいアイテムをセミコロン区切りで記述することで、アニメーションで表示されます。

{{Furnace
|Input=  Sand,17; Oak Log,10
|Output= Glass,2; Charcoal,10
|Fuel=   Coal,3
}}
結果:

Mod

Mod images and normal images can be combined just like in a single slot. However, since all mod pages are in the process of being exported to the FTB Wiki, this function is not recommended.

関連項目