提供: Minecraft Modding Wiki
(ページの作成:「{{前提MOD|reqmod="Minecraft Forge Universal 11.14.0.xxx~"}} {{チュートリアル難易度|difficulty=0}} このチュートリアルでは1.8.xのアイテムの追…」) |
|||
21行目: | 21行目: | ||
"##", | "##", | ||
'#', new ItemStack(Blocks.dirt) | '#', new ItemStack(Blocks.dirt) | ||
+ | ); | ||
+ | GameRegistry.addRecipe(new ItemStack(Items.diamond), | ||
+ | "#%#", | ||
+ | "%#%", | ||
+ | "#%#" | ||
+ | '#', new ItemStack(Blocks.dirt), | ||
+ | '%', new ItemStack(Blocks.stone) | ||
); | ); | ||
} | } | ||
</source> | </source> | ||
執筆中 | 執筆中 |
2021年6月22日 (火) 09:15時点における版
この記事は"Minecraft Forge Universal 11.14.0.xxx~"を前提MODとしています。 |
このチュートリアルでは1.8.xのアイテムの追加方法を解説します。
ソース
SampleRecipe.java
/*パッケージ、インポートは省略*/ @Mod(modid = SampleRecipe.MOD_ID, version = SampleRecipe.MOD_VERSION, name = SampleRecipe.MOD_NAME) public class SampleRecipe { /*modid*/ public static final String MOD_ID = "sample_recipe"; /*modのバージョン*/ public static final String MOD_VERSION = "1.0.0"; /*modの名前*/ public static final String MOD_NAME = "Sample Recipe"; @EventHandler public void init(FMLInitalizationEvent event) { GameRegistry.addRecipe(new ItemStack(Items.diamond), "##", '#', new ItemStack(Blocks.dirt) ); GameRegistry.addRecipe(new ItemStack(Items.diamond), "#%#", "%#%", "#%#" '#', new ItemStack(Blocks.dirt), '%', new ItemStack(Blocks.stone) ); }
執筆中