https://github.com/proudust/minecraft-forge-kotlin-template
Minecraft 1.12.2 Mod template using Forge and Kotlin
https://github.com/proudust/minecraft-forge-kotlin-template
kotlin minecraft minecraft-forge minecraft-mod
Last synced: 8 months ago
JSON representation
Minecraft 1.12.2 Mod template using Forge and Kotlin
- Host: GitHub
- URL: https://github.com/proudust/minecraft-forge-kotlin-template
- Owner: proudust
- License: mit
- Created: 2019-07-12T02:47:59.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-01T06:50:22.000Z (over 4 years ago)
- Last Synced: 2025-02-05T10:49:28.140Z (8 months ago)
- Topics: kotlin, minecraft, minecraft-forge, minecraft-mod
- Language: Kotlin
- Size: 123 KB
- Stars: 46
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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](https://github.com/proudust/minecraft-forge-kotlin-template/generate)
or
```sh
git clone --depth=1 https://github.com/proudust/minecraft-forge-kotlin-template
cd
rm -rf .git
```### Install dependencies
```sh
./gradlew build
```### Fix properties
**gradle.properties**
```properties
modGroup=
modVersion=
modBaseName=
```**mcmod.info**
```json
{
"modid": "",
"name": "",
}
```**MinecraftForgeKotlinTemplate.kt**
```kt
package .//...
object {
const val MOD_ID =
const val MOD_NAME =
const val VERSION =//...
}
```**LICENSE**
```md
MIT LicenseCopyright (c) [Year] [Your Name]
Permission is hereby granted, free of charge, to any person obtaining a copy
```## Dependencies
- [Minecraft Forge](https://files.minecraftforge.net/)
- [anatawa12/ForgeGradle-2.3](https://github.com/anatawa12/ForgeGradle-2.3)
- [shadowfacts/Forgelin](https://github.com/shadowfacts/Forgelin)## References
- [C6H2Cl2/MCDevNightSample](https://github.com/C6H2Cl2/MCDevNightSample)
- [therealfarfetchd/build.gradle.kts](https://gist.github.com/therealfarfetchd/db8fc601df89703a360bccc0395ec590)
- [How to execute runClient in ForgeGradle for 1.12 or older with newest jdk8](https://gist.github.com/anatawa12/d61520430a96ba5939cd5a66dbba5bb3)