All Projects → proudust → minecraft-forge-kotlin-template

proudust / minecraft-forge-kotlin-template

Licence: MIT license
Minecraft 1.12.2 Mod template using Forge and Kotlin

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to minecraft-forge-kotlin-template

Armourers Workshop
Minecraft armour customization mod.
Stars: ✭ 92 (+142.11%)
Mutual labels:  minecraft-mod, minecraft-forge
ElevatorMod
Port of the elevator from OpenBlocks for Minecraft 1.8+
Stars: ✭ 21 (-44.74%)
Mutual labels:  minecraft-mod, minecraft-forge
Chisels And Bits
A Minecraft mod about chiseling and designing custom blocks in game.
Stars: ✭ 119 (+213.16%)
Mutual labels:  minecraft-mod, minecraft-forge
Metamorph
Morphing mod for Minecraft 1.12.2
Stars: ✭ 52 (+36.84%)
Mutual labels:  minecraft-mod, minecraft-forge
Levels
A small, Minecraft mod focused around the aspect of weapon and armor leveling.
Stars: ✭ 24 (-36.84%)
Mutual labels:  minecraft-mod, minecraft-forge
Tropicraft
Come sail away!
Stars: ✭ 80 (+110.53%)
Mutual labels:  minecraft-mod, minecraft-forge
Agricraft
The source code for the Minecraft mod: AgriCraft
Stars: ✭ 160 (+321.05%)
Mutual labels:  minecraft-mod, minecraft-forge
Justenoughitems
Item and Recipe viewing mod for Minecraft
Stars: ✭ 418 (+1000%)
Mutual labels:  minecraft-mod, minecraft-forge
RubyMod
RubyMod is an open-source mod, which prioritizes sharing its code to help other modders learn.
Stars: ✭ 15 (-60.53%)
Mutual labels:  minecraft-mod, minecraft-forge
Bettercolors
⚔️ Minecraft assistance mod built with Forge AND Fabric. For MC 1.8.9, 1.12.2, 1.13.2, 1.14.4, 1.15.2, 1.16.x, 1.17.X, 1.18.X, 1.19.X
Stars: ✭ 37 (-2.63%)
Mutual labels:  minecraft-mod, minecraft-forge
Realistictorches
A Minecraft mod that increases the difficulty of the early game by adding realism mechanics to torches.
Stars: ✭ 15 (-60.53%)
Mutual labels:  minecraft-mod, minecraft-forge
ForgeWurst
Wurst Client for Minecraft Forge.
Stars: ✭ 37 (-2.63%)
Mutual labels:  minecraft-mod, minecraft-forge
Customstuff4
A Minecraft mod for adding content
Stars: ✭ 24 (-36.84%)
Mutual labels:  minecraft-mod, minecraft-forge
MrCrayfishGunMod
A Minecraft Mod focused on adding fun and simple weapons wtih lots of customisation including attachments and more!
Stars: ✭ 132 (+247.37%)
Mutual labels:  minecraft-mod, minecraft-forge
Equivalent Exchange 3
Stars: ✭ 727 (+1813.16%)
Mutual labels:  minecraft-mod, minecraft-forge
Industrial Foregoing
IF: you need to automate all the things
Stars: ✭ 125 (+228.95%)
Mutual labels:  minecraft-mod, minecraft-forge
Loot-Slash-Conquer-Pre1.14
An immersive, action-RPG mod based on Hack/Mine.
Stars: ✭ 17 (-55.26%)
Mutual labels:  minecraft-mod, minecraft-forge
Cc Tweaked
Just another ComputerCraft fork
Stars: ✭ 331 (+771.05%)
Mutual labels:  minecraft-mod, minecraft-forge
Hypermc
Install Minecraft extensions with a user-friendly interface ⛏💎
Stars: ✭ 27 (-28.95%)
Mutual labels:  minecraft-mod, minecraft-forge
Future-MC
Adds blocks from future versions.
Stars: ✭ 51 (+34.21%)
Mutual labels:  minecraft-mod, minecraft-forge

Minecraft Forge Kotlin Template

Minecraft 1.12.2 で Forge と Kotlin を用いた Mod のテンプレートです。
Minecraft 1.12.2 Mod template using Forge and Kotlin.

Getting Started

Clone template

Please click Use this template

or

git clone --depth=1 https://github.com/proudust/minecraft-forge-kotlin-template <your_project_name>
cd <your_project_name>
rm -rf .git

Install dependencies

./gradlew build

Fix properties

gradle.properties

modGroup=<your_package_name>
modVersion=<your_project_version>
modBaseName=<your_project_name>

mcmod.info

{
    "modid": "<your_package_name>",
    "name": "<Your Project Name>",
}

MinecraftForgeKotlinTemplate.kt

package <your_package_name>.<your_project_name>

//...

object <YourProjectName> {
    const val MOD_ID = <your_project_name>
    const val MOD_NAME = <Your Project Name>
    const val VERSION = <your_project_version>

    //...
}

LICENSE

MIT License

Copyright (c) [Year] [Your Name]

Permission is hereby granted, free of charge, to any person obtaining a copy

Dependencies

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].