zh_cn:tutorial:crops
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
zh_cn:tutorial:crops [2021/11/09 11:16] – created breakice | zh_cn:tutorial:crops [2025/04/01 12:05] (current) – fix typo solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== 添加你的自定义作物 ====== | + | ====== 添加自定义作物 ====== |
- | 这篇教程会教会你如何添加一个像是小麦和胡萝卜那样的作物。如果你想创建属于你的作物的话,你需要以下物品: | + | 本教程将教会您如何添加像小麦和胡萝卜那样的作物。创建自定义的作物时,需要做以下这些事情: |
- | * 自定义的种子 | + | * 自定义的种子物品 |
- | | + | * 作物方块和种子物品的注册表 |
- | * 作物方块的类 | + | * 作物方块类 |
* 为你的作物设计的方块状态和模型 | * 为你的作物设计的方块状态和模型 | ||
===== 创建作物类 ===== | ===== 创建作物类 ===== | ||
- | 为了创建自定义作物我们需要先创建一个方块类。 你需要用你的作物名命名你的类并且让他继承 '' | + | 为创建自定义作物,我们需要先创建一个方块类。你需要用你的作物名称命名你的类,并且继承 '' |
<code java [enable_line_numbers=" | <code java [enable_line_numbers=" | ||
public class CustomCropBlock extends CropBlock { | public class CustomCropBlock extends CropBlock { | ||
- | private static final VoxelShape[] AGE_TO_SHAPE = new VoxelShape[]{Block.createCuboidShape(0.0D, | ||
- | Block.createCuboidShape(0.0D, | ||
- | Block.createCuboidShape(0.0D, | ||
- | Block.createCuboidShape(0.0D, | ||
- | Block.createCuboidShape(0.0D, | ||
- | Block.createCuboidShape(0.0D, | ||
- | Block.createCuboidShape(0.0D, | ||
- | Block.createCuboidShape(0.0D, | ||
- | }; | ||
- | |||
public CustomCropBlock(AbstractBlock.Settings settings) { | public CustomCropBlock(AbstractBlock.Settings settings) { | ||
super(settings); | super(settings); | ||
Line 31: | Line 21: | ||
</ | </ | ||
- | Once you've configured that, you need to define your seed item and add an outline shape. We haven't added our seed item yet so you can use something else temporarily. Here is what the code should look like with your cuboid shape, seed item, and outline shape: | + | 配置完成后,你需要定义你的种子物品并添加外观形状。每个 |
+ | |||
+ | 我们还没有添加种子物品,因此暂时先使用其他的。下面的代码,使用长方体形状、种子物品和外观形状应该是这样子: | ||
<code java [enable_line_numbers=" | <code java [enable_line_numbers=" | ||
Line 49: | Line 41: | ||
} | } | ||
- | | + | |
- | return | + | protected |
+ | return | ||
} | } | ||
| | ||
- | | + | |
- | return AGE_TO_SHAPE[(Integer)state.get(this.getAgeProperty())]; | + | protected |
+ | return AGE_TO_SHAPE[getAge(state)]; | ||
} | } | ||
} | } | ||
</ | </ | ||
- | ===== Registering your Crop and Seed Item ===== | + | ===== 注册你的作物和种子物品 |
- | Now we need to register our crop and the item to use for our seed. The seed model and class will not be covered in this tutorial but you can refer to the [[tutorial:items|Item]] page. It is important you add '' | + | 现在需要注册作物和用作种子的物品。种子模型和类(包括为方便而用的静态 '' |
- | <code java [enable_line_numbers=" | + | <code java [enable_line_numbers=" |
- | public | + | // 对于 1.21.2 之前的版本: |
+ | | ||
+ | |||
+ | // 对于 1.21.2 及之后的版本: | ||
+ | public static final Block CUSTOM_CROP = register(" | ||
+ | </ | ||
- | public static final CropBlock CUSTOM_CROP_BLOCK | + | <code java [enable_line_numbers=" |
+ | // 对于 1.21.2 之前的版本: | ||
+ | | ||
+ | |||
+ | // 对于 1.21.2 及之后的版本: | ||
+ | public static final Item CUSTOM_SEEDS = register(" | ||
+ | </ | ||
- | public static final Item CUSTOM_SEEDS | + | > 在[[blocks|添加方块]]教程中,我们写的 '' |
+ | > <code java TutorialBlocks.java> | ||
+ | // ... | ||
+ | | ||
+ | |||
+ | // ... | ||
+ | |||
+ | private static Block registerBlockOnly(String path, Function< | ||
+ | final Identifier identifier = Identifier.of(" | ||
+ | final RegistryKey< | ||
- | @Override | + | return Blocks.register(registryKey, factory, settings); |
- | public void onInitialize() { | + | } |
- | Registry.register(Registry.BLOCK, new Identifier(" | + | |
- | Registry.register(Registry.ITEM, | + | |
- | + | ||
- | } | + | |
- | } | + | |
</ | </ | ||
- | You also probably want the '' | + | 你很可能还需要 |
- | <code java [enable_line_numbers=" | + | <code java [enable_line_numbers=" |
- | public class TutorialModClient | + | @Environment(EnvType.CLIENT) |
- | | + | public class ExampleModClient |
- | | + | // ... |
- | | + | |
- | | + | |
+ | public void onInitializeClient() { | ||
+ | // ... | ||
+ | | ||
+ | } | ||
} | } | ||
</ | </ | ||
- | ===== Creating our Blockstate and Models | + | ===== 创建方块状态和模型 |
- | Now that we have finished the registry and code, we can add our models. The example below shows a simple growth stage model that uses the '' | + | 我们已经完成了注册和代码,现在需要添加模型。下面的例子展示了使用 |
<code JavaScript src/ | <code JavaScript src/ | ||
Line 97: | Line 110: | ||
" | " | ||
" | " | ||
- | " | + | " |
} | } | ||
} | } | ||
</ | </ | ||
- | Lastly you will want to create a blockstate for your crop which registers your model for each age of your crop: | + | 最后,您还需要为您的作物创建方块状态映射,以给作物的每个生长阶段都分配单独的模型。 |
- | <code JavaScript src/ | + | <code JavaScript src/ |
{ | { | ||
" | " | ||
" | " | ||
- | " | + | " |
}, | }, | ||
" | " | ||
- | " | + | " |
}, | }, | ||
" | " | ||
- | " | + | " |
}, | }, | ||
" | " | ||
- | " | + | " |
}, | }, | ||
" | " | ||
- | " | + | " |
}, | }, | ||
" | " | ||
- | " | + | " |
}, | }, | ||
" | " | ||
- | " | + | " |
}, | }, | ||
" | " | ||
- | " | + | " |
} | } | ||
} | } | ||
Line 135: | Line 148: | ||
</ | </ | ||
- | ===== Crop Block Finished! | + | > 种子物品也需要对应的物品模型和物品模型映射(对于 1.21.4 及之后的版本),具体做法参见 [[items]],这里不作详细描述。 |
+ | |||
+ | ===== 战利品表 ===== | ||
+ | 方块还需要战利品表,否则被破坏后什么也不会掉落。不过,你可以直接模仿原版的。例如,复制原版的 '' | ||
+ | |||
+ | ===== 大功告成! | ||
- | If you completed all parts of this tutorial correctly, you should now have a working crop! Your crop will be usable with bone meal and can only be placed on farmland with your seed item. | + | 如果你正确完成了本教程的所有部分,那么你现在就应该有一个生效的作物了!这个作物可以用骨粉催熟,并且只能用种子物品放置在耕地上。 |
zh_cn/tutorial/crops.1636456591.txt.gz · Last modified: 2021/11/09 11:16 by breakice