Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Articdive committed Feb 4, 2024
1 parent c5f2819 commit 7adc5b0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Adding to a Maven Project:
<dependency>
<groupId>de.articdive</groupId>
<artifactId>articdata</artifactId>
<version>1.18.1-77b86bc4</version>
<version>1.18.1-cb27856f</version>
</dependency>
</dependencies>
```
Expand All @@ -69,7 +69,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation("de.articdive:articdata:1.18.1-77b86bc4")
implementation("de.articdive:articdata:1.18.1-cb27856f")
}
```

Expand Down
26 changes: 13 additions & 13 deletions 1_18_1_loot_tables/1_18_1_chest_loot_tables.json
Original file line number Diff line number Diff line change
Expand Up @@ -3734,6 +3734,14 @@
{
"function": "minecraft:set_stew_effect",
"effects": [
{
"type": "minecraft:poison",
"duration": {
"type": "minecraft:uniform",
"min": 10.0,
"max": 20.0
}
},
{
"type": "minecraft:saturation",
"duration": {
Expand All @@ -3751,35 +3759,27 @@
}
},
{
"type": "minecraft:weakness",
"duration": {
"type": "minecraft:uniform",
"min": 6.0,
"max": 8.0
}
},
{
"type": "minecraft:night_vision",
"type": "minecraft:jump_boost",
"duration": {
"type": "minecraft:uniform",
"min": 7.0,
"max": 10.0
}
},
{
"type": "minecraft:jump_boost",
"type": "minecraft:night_vision",
"duration": {
"type": "minecraft:uniform",
"min": 7.0,
"max": 10.0
}
},
{
"type": "minecraft:poison",
"type": "minecraft:weakness",
"duration": {
"type": "minecraft:uniform",
"min": 10.0,
"max": 20.0
"min": 6.0,
"max": 8.0
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
tasks {
register<Jar>("packageVersion") {
archiveBaseName.set("articdata")
archiveVersion.set("1.18.1-77b86bc4")
archiveVersion.set("1.18.1-cb27856f")

destinationDirectory.set(layout.buildDirectory.dir("dist"))
from(project.rootProject.rootDir)
Expand All @@ -20,7 +20,7 @@ publishing {
create<MavenPublication>("maven") {
groupId = "de.articdive"
artifactId = "articdata"
version = "1.18.1-77b86bc4"
version = "1.18.1-cb27856f"

pom {
name.set("ArticData")
Expand Down

0 comments on commit 7adc5b0

Please sign in to comment.