tutorial:enchantments
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorial:enchantments [2019/07/02 22:38] – change enchantment type so tut makes more sense draylar | tutorial:enchantments [2024/08/23 13:52] (current) – [Adding Translations] solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ===== Adding Enchantments ===== | + | ====== Adding Enchantments ====== |
+ | |||
+ | ===== Adding enchantments since 1.21 ===== | ||
+ | Since 1.21, enchantments has been data-driven, | ||
+ | |||
+ | To use the enchantments in code, you should just store '' | ||
+ | <code java TutorialEnchantments> | ||
+ | public final class TutorialEnchantments { | ||
+ | public static final RegistryKey< | ||
+ | |||
+ | private static RegistryKey< | ||
+ | return RegistryKey.of(RegistryKeys.ENCHANTMENT, | ||
+ | } | ||
+ | |||
+ | public static void initialize() { | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Remember to refer to the '' | ||
+ | <code java ExampleMod> | ||
+ | public class ExampleMod implements ModInitializer { | ||
+ | // [...] | ||
+ | |||
+ | @Override | ||
+ | public void onInitialize() { | ||
+ | // [...] | ||
+ | TutorialEnchantments.initialize(); | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | To add a translated name for your enchantment, | ||
+ | |||
+ | ===== Adding enchantments before 1.21 ===== | ||
+ | :!: This part of the tutorial only applies to older Minecraft versions. | ||
To add enchantments to your mod, you'll need to: | To add enchantments to your mod, you'll need to: | ||
Line 10: | Line 45: | ||
==== Creating Enchantment Class ==== | ==== Creating Enchantment Class ==== | ||
- | We'll be creating an enchantment called //Frost//, which slows mobs. The slowness effect durability | + | Our new enchantment |
<code java [enable_line_numbers=" | <code java [enable_line_numbers=" | ||
- | public class FrostEnchantment extends Enchantment | + | public class FrostEnchantment extends Enchantment { |
- | { | + | public |
- | public | + | super(Enchantment.Rarity.UNCOMMON, EnchantmentTarget.WEAPON, new EquipmentSlot[] {EquipmentSlot.MAINHAND}); |
- | | + | |
- | super(weight, target, slots) | + | |
} | } | ||
} | } | ||
</ | </ | ||
- | You'll have to override a few basic methods for basic functionality: | + | We will now override a few basic methods for basic functionality: |
- | '' | + | '' |
<code java [enable_line_numbers=" | <code java [enable_line_numbers=" | ||
@Override | @Override | ||
- | public int getMinimumPower(int int_1) | + | public int getMinPower(int level) { |
- | { | + | |
return 1; | return 1; | ||
} | } | ||
</ | </ | ||
- | '' | + | '' |
<code java [enable_line_numbers=" | <code java [enable_line_numbers=" | ||
@Override | @Override | ||
- | public int getMaximumLevel() | + | public int getMaxLevel() { |
- | { | + | |
return 3; | return 3; | ||
} | } | ||
</ | </ | ||
- | Finally, we' | + | Finally, we will implement our slowness effect in the '' |
<code java [enable_line_numbers=" | <code java [enable_line_numbers=" | ||
@Override | @Override | ||
- | public void onTargetDamaged(LivingEntity user, Entity target, int level) | + | public void onTargetDamaged(LivingEntity user, Entity target, int level) { |
- | { | + | if(target instanceof LivingEntity |
- | if(target instanceof LivingEntity) | + | |
- | | + | |
- | | + | |
} | } | ||
Line 54: | Line 83: | ||
} | } | ||
</ | </ | ||
- | Pretty simple logic: if the entity we' | + | If the entity we are hitting can have status effects |
+ | |||
+ | The final enchantment file should look like this. | ||
+ | <code java [enable_line_numbers=" | ||
+ | public class FrostEnchantment extends Enchantment { | ||
+ | public FrostEnchantment() { | ||
+ | super(Enchantment.Rarity.UNCOMMON, | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public int getMinPower(int level) { | ||
+ | return 1; | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public int getMaxLevel() { | ||
+ | return 3; | ||
+ | } | ||
+ | |||
+ | public void onTargetDamaged(LivingEntity user, Entity target, int level) { | ||
+ | if(target instanceof LivingEntity) { | ||
+ | ((LivingEntity) target).addStatusEffect(new StatusEffectInstance(StatusEffects.SLOWNESS, | ||
+ | } | ||
+ | |||
+ | super.onTargetDamaged(user, | ||
+ | } | ||
+ | } | ||
+ | </ | ||
==== Registering Enchantment ==== | ==== Registering Enchantment ==== | ||
Registering enchantments follows the same process as usual: | Registering enchantments follows the same process as usual: | ||
<code java [enable_line_numbers=" | <code java [enable_line_numbers=" | ||
- | private | + | public class ExampleMod implements ModInitializer { |
+ | public | ||
- | @Override | + | |
- | public void onInitialize() | + | public void onInitialize() { |
- | { | + | Registry.register(Registries.ENCHANTMENT, |
- | FROST = Registry.register( | + | |
- | Registry.ENCHANTMENT, | + | |
- | new Identifier(" | + | |
- | new FrostEnchantment( | + | |
- | Enchantment.Weight.VERY_RARE, | + | |
- | EnchantmentTarget.WEAPON, | + | |
- | new EquipmentSlot[] { | + | |
- | EquipmentSlot.MAINHAND | + | |
- | } | + | |
- | ) | + | |
- | | + | |
} | } | ||
</ | </ | ||
+ | > **Note:** In practice, if you have many enchantments, | ||
- | This registers our enchantment under the namespace '' | + | This registers our enchantment under the namespace '' |
+ | |||
+ | ===== Adding Translations ===== | ||
+ | =) This part works both versions since 1.21 and before 1.21. | ||
- | ==== Adding Translations & Testing ==== | ||
You'll need to add a translation to your enchantment as well. Head over to your [[tutorial: | You'll need to add a translation to your enchantment as well. Head over to your [[tutorial: | ||
- | <code json [enable_line_numbers=" | + | < |
{ | { | ||
" | " | ||
Line 89: | Line 139: | ||
</ | </ | ||
- | If you go in-game, you should be able to enchant main hand weapons with your new enchant: | + | If you go in-game, |
tutorial/enchantments.1562107087.txt.gz · Last modified: 2019/07/02 22:38 by draylar