Skip to content

Commit 47b3795

Browse files
authored
Update create-a-minecraft-mod-with-java.mdx
1 parent 0928ca9 commit 47b3795

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

projects/create-a-minecraft-mod-with-java/create-a-minecraft-mod-with-java.mdx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ published: live
88
header: https://firebasestorage.googleapis.com/v0/b/codedex-io.appspot.com/o/projects%2Fcreate-a-minecraft-mod-with-java%2FCopy%20of%20Codedex%20Project%20Headers%20(6).gif?alt=media&token=9fa73695-90db-47e9-9b0e-b9436e4ec9f7
99
bannerImage: https://firebasestorage.googleapis.com/v0/b/codedex-io.appspot.com/o/projects%2Fcreate-a-minecraft-mod-with-java%2FCopy%20of%20Codedex%20Project%20Headers%20(6).gif?alt=media&token=9fa73695-90db-47e9-9b0e-b9436e4ec9f7
1010
readTime: 60
11-
prerequisites: Java,
11+
prerequisites: Java
1212
versions: Java JDK Version 21, IntelliJ Idea
1313
courses:
1414
- java
@@ -25,7 +25,9 @@ tags:
2525

2626
This project tutorial comes from that curiosity. Instead of just playing Minecraft, we are going to extend it by writing our own Java code and create a working Minecraft mod. If you have ever wanted to understand how mods work under the hood or take your first step into game modding, this is the place to start.
2727

28-
**Mods** (short for modifications) are a way of writing code to alter graphics or gameplay of a game. In 2026, there are 200,000+ mods for Minecraft across different mod hosting sites. It's now the most modded game of all-time above Skyrim.
28+
**Mods** (short for modifications) are a way of writing code to alter graphics or gameplay of a game.
29+
30+
In 2026, there are 200,000+ mods for Minecraft across different mod hosting sites. It's now the most modded game of all-time above Skyrim.
2931

3032
We are going to build a mod that creates a **custom item** in Minecraft:
3133

@@ -38,7 +40,9 @@ We are going to build a mod that creates a **custom item** in Minecraft:
3840

3941
This project tutorial requires a setup of the Forge MDK’s project structure and parchment.
4042

41-
The **Forge MDK** is the official starter kit you use when you want to build a Minecraft mod using the Forge mod loader—especially in Java. Think of the it as a pre-configured project template for modding Minecraft. The name MDK, which stands for Mod Development Kit, came from the SDK, which came from Software Developer Kit (i.e. Android SDK, iOS SDK, Unity SDK, Unreal SDK, Windows SDK, PlayStation SDK).
43+
The **Forge MDK** is the official starter kit you use when you want to build a Minecraft mod using the Forge mod loader. Think of the it as a pre-configured project template for modding Minecraft.
44+
45+
The name MDK, which stands for Mod Development Kit, came from the SDK, which came from Software Developer Kit (i.e. Android SDK, iOS SDK, Unity SDK, Unreal SDK, Windows SDK, PlayStation SDK).
4246

4347
Minecraft was not built to be changed easily. The Forge MDK acts like a translator and helper that lets our code talk to Minecraft safely.
4448

0 commit comments

Comments
 (0)