Skip to content

Commit

Permalink
Slightly rebalanced default stats and loot chances
Browse files Browse the repository at this point in the history
  • Loading branch information
the1mason committed Aug 5, 2023
1 parent 219cf90 commit 6a46950
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import org.gradle.configurationcache.extensions.capitalized
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

group = "world.undying.emeraldtools" // TODO: Change this to your group
version = "1.0.2" // TODO: Change this to your addon version
group = "world.undying.emeraldtools"
version = "1.0.3"

val mojangMapped = project.hasProperty("mojang-mapped")

Expand All @@ -22,8 +22,8 @@ addon {
name.set(project.name.capitalized())
version.set(project.version.toString())
novaVersion.set(libs.versions.nova)
main.set("world.undying.emeraldtools.EmeraldTools") // TODO: Change this to your main class
authors.add("the1mason") // TODO: Set your list of authors
main.set("world.undying.emeraldtools.EmeraldTools")
authors.add("the1mason")
}

spigotRemap {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/configs/emerald_axe.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
tool_tier: minecraft:diamond
tool_category: minecraft:axe
break_speed: 40
break_speed: 20
attack_damage: 9
attack_speed: 1.1
can_sweep_attack: false
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/configs/emerald_hoe.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
tool_tier: minecraft:diamond
tool_category: minecraft:hoe
break_speed: 25
break_speed: 20
attack_damage: 1.5
attack_speed: 4
can_sweep_attack: false
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/configs/emerald_pickaxe.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
tool_tier: minecraft:diamond
tool_category: minecraft:pickaxe
break_speed: 40
break_speed: 30
attack_damage: 4
attack_speed: 1.1
can_sweep_attack: false
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/configs/emerald_shovel.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
tool_tier: minecraft:diamond
tool_category: minecraft:shovel
break_speed: 30
break_speed: 25
attack_damage: 5.5
attack_speed: 1
can_sweep_attack: false
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/loot/emerald_tools_natural.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"items": [
{
"item": "emeraldtools:emerald_pickaxe",
"chance": 10,
"chance": 6,
"amount": {
"min": 1,
"max": 1
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/loot/emerald_weapons_natural.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"items": [
{
"item": "emeraldtools:emerald_sword",
"chance": 10,
"chance": 5,
"amount": {
"min": 1,
"max": 1
Expand Down

0 comments on commit 6a46950

Please sign in to comment.