https://github.com/theonlytails/lootgoblin
A Kotlin DSL for creating loot tables in Minecraft Forge mods.
https://github.com/theonlytails/lootgoblin
hacktoberfest kotlin kotlin-dsl loot-tables minecraft minecraft-forge
Last synced: about 2 months ago
JSON representation
A Kotlin DSL for creating loot tables in Minecraft Forge mods.
- Host: GitHub
- URL: https://github.com/theonlytails/lootgoblin
- Owner: TheOnlyTails
- License: mit
- Created: 2021-03-28T15:01:35.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-10T10:20:31.000Z (over 3 years ago)
- Last Synced: 2025-03-03T15:15:46.443Z (about 2 months ago)
- Topics: hacktoberfest, kotlin, kotlin-dsl, loot-tables, minecraft, minecraft-forge
- Language: Kotlin
- Homepage: https://lootgoblin.theonlytails.com
- Size: 733 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://search.maven.org/artifact/com.theonlytails/lootgoblin)



---
# 
# A Kotlin DSL for creating loot tables in Minecraft Forge mods.
For documentation and usage instructions, please take a look at
the [wiki](https://github.com/TheOnlyTails/LootGoblin/wiki) as well as the [docs](https://lootgoblin.theonlytails.com/).Here's
the [`maven-metadata.xml`](https://s01.oss.sonatype.org/service/local/repositories/releases/content/com/theonlytails/lootgoblin/maven-metadata.xml)
of this library.## Installation
_Don't forget to replace the VERSION key with the version in the top with the Maven Central badge at the top!_
#### Gradle/Groovy
```gradle
repositories {
mavenCentral()
}dependencies {
implementation fg.deobf("com.theonlytails:lootgoblin:VERSION")
}
```#### Gradle/Kotlin
```kotlin
repositories {
mavenCentral()
}dependencies {
implementation(fg.deobf(group = "com.theonlytails", name = "lootgoblin", version = "VERSION"))
}
```---
Want to generate block models with a DSL like this? Check
out [ModelGoblin](https://github.com/theonlytails/ModelGoblin)!